(self, map=None)
| 269 | return '<%s at %#x>' % (' '.join(status), id(self)) |
| 270 | |
| 271 | def add_channel(self, map=None): |
| 272 | #self.log_info('adding channel %s' % self) |
| 273 | if map is None: |
| 274 | map = self._map |
| 275 | map[self._fileno] = self |
| 276 | |
| 277 | def del_channel(self, map=None): |
| 278 | fd = self._fileno |
no outgoing calls
no test coverage detected