(self, data)
| 537 | return (not self.connected) or len(self.out_buffer) |
| 538 | |
| 539 | def send(self, data): |
| 540 | if self.debug: |
| 541 | self.log_info('sending %s' % repr(data)) |
| 542 | self.out_buffer = self.out_buffer + data |
| 543 | self.initiate_send() |
| 544 | |
| 545 | # --------------------------------------------------------------------------- |
| 546 | # used for debugging. |
nothing calls this directly
no test coverage detected