(self, data)
| 829 | return (not self.connected) or len(self.out_buffer) |
| 830 | |
| 831 | def send(self, data): |
| 832 | if self.debug: |
| 833 | self.log_info('sending %s' % repr(data)) |
| 834 | self.out_buffer = self.out_buffer + data |
| 835 | self.initiate_send() |
| 836 | |
| 837 | # --------------------------------------------------------------------------- |
| 838 | # used for debugging. |
nothing calls this directly
no test coverage detected