(self, waiter)
| 37 | class SlowCancelConnection(pg_connection.Connection): |
| 38 | """Connection class to simulate races with Connection._cancel().""" |
| 39 | async def _cancel(self, waiter): |
| 40 | await asyncio.sleep(0.2) |
| 41 | return await super()._cancel(waiter) |
| 42 | |
| 43 | |
| 44 | class TestPool(tb.ConnectedTestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected