(self)
| 478 | ObjectPipe.send(self, (None, None, True)) |
| 479 | |
| 480 | def deliver(self): |
| 481 | # type: () -> None |
| 482 | msg, high, exhaust = self.recv() # type: ignore |
| 483 | if exhaust: |
| 484 | pass |
| 485 | if high: |
| 486 | self._high_send(msg) |
| 487 | else: |
| 488 | self._send(msg) |
| 489 | |
| 490 | |
| 491 | class ThreadGenSource(AutoSource): |
nothing calls this directly
no test coverage detected