We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a46c222 commit ee7e966Copy full SHA for ee7e966
Lib/test/test_asyncio/test_streams.py
@@ -997,14 +997,9 @@ async def inner(httpd):
997
wr.write(b'data')
998
await wr.drain()
999
1000
- messages = []
1001
- self.loop.set_exception_handler(lambda loop, ctx: messages.append(ctx))
1002
-
1003
with test_utils.run_test_server() as httpd:
1004
await inner(httpd)
1005
1006
- self.assertEqual(messages, [])
1007
1008
async def test_eof_feed_when_closing_writer(self):
1009
# See http://bugs.python.org/issue35065
1010
async with test_utils.run_test_server() as httpd:
0 commit comments