(self)
| 542 | self.maybe_close() |
| 543 | |
| 544 | def maybe_close(self): |
| 545 | if self.shut_read and self.shut_write: |
| 546 | debug2('%r: closing connection' % self) |
| 547 | # remove the mux's reference to us. The python garbage collector |
| 548 | # will then be able to reap our object. |
| 549 | self.mux.channels[self.channel] = None |
| 550 | |
| 551 | def too_full(self): |
| 552 | return self.mux.too_full |
no test coverage detected