(self, data)
| 527 | return (not self.connected) or len(self.out_buffer) |
| 528 | |
| 529 | def send(self, data): |
| 530 | if self.debug: |
| 531 | self.log_info('sending %s' % repr(data)) |
| 532 | self.out_buffer = self.out_buffer + data |
| 533 | self.initiate_send() |
| 534 | |
| 535 | # --------------------------------------------------------------------------- |
| 536 | # used for debugging. |
nothing calls this directly
no test coverage detected