Write a byte to self-pipe, to wake up the event loop. This may be called from a different thread. The subclass is responsible for implementing the self-pipe.
(self)
| 538 | raise NotImplementedError |
| 539 | |
| 540 | def _write_to_self(self): |
| 541 | """Write a byte to self-pipe, to wake up the event loop. |
| 542 | |
| 543 | This may be called from a different thread. |
| 544 | |
| 545 | The subclass is responsible for implementing the self-pipe. |
| 546 | """ |
| 547 | raise NotImplementedError |
| 548 | |
| 549 | def _process_events(self, event_list): |
| 550 | """Process selector events.""" |
no outgoing calls
no test coverage detected