(self, what)
| 85 | self.dtp_conn_closed = True |
| 86 | |
| 87 | def push(self, what): |
| 88 | if self.baseclass.next_data is not None: |
| 89 | what = self.baseclass.next_data |
| 90 | self.baseclass.next_data = None |
| 91 | if not what: |
| 92 | return self.close_when_done() |
| 93 | super(DummyDTPHandler, self).push(what.encode(self.encoding)) |
| 94 | |
| 95 | def handle_error(self): |
| 96 | default_error_handler() |