MCPcopy Index your code
hub / github.com/python/cpython / wait_closed

Method wait_closed

Lib/test/test_asyncio/test_ssl.py:191–197  ·  view source on GitHub ↗
(self, obj)

Source from the content-addressed store, hash-verified

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):

Callers 15

clientMethod · 0.95
client_sockMethod · 0.95
handle_clientMethod · 0.45
stopMethod · 0.45
clientMethod · 0.45
server_handlerMethod · 0.45
run_testMethod · 0.45
innerMethod · 0.45
mainMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected