(self)
| 112 | await writer.wait_closed() |
| 113 | |
| 114 | async def aclose(self): |
| 115 | try: |
| 116 | self.task.cancel() |
| 117 | await asyncio.wait_for(self.task, timeout=1) |
| 118 | self.server.close() |
| 119 | await self.server.wait_closed() |
| 120 | except asyncio.TimeoutError: |
| 121 | pass |
| 122 | except asyncio.CancelledError: |
| 123 | pass |
| 124 | |
| 125 | async def pipe( |
| 126 | self, |
no test coverage detected