(self, obj)
| 189 | return asyncio.DefaultEventLoopPolicy() |
| 190 | |
| 191 | async def wait_closed(self, obj): |
| 192 | if not isinstance(obj, asyncio.StreamWriter): |
| 193 | return |
| 194 | try: |
| 195 | await obj.wait_closed() |
| 196 | except (BrokenPipeError, ConnectionError): |
| 197 | pass |
| 198 | |
| 199 | @support.bigmemtest(size=25, memuse=90*2**20, dry_run=False) |
| 200 | def test_create_server_ssl_1(self, size): |
no outgoing calls
no test coverage detected