Kaydet (Commit) 79972f1f authored tarafından Xtreak's avatar Xtreak Kaydeden (comit) Miss Islington (bot)

bpo-36884: Fix DeprecationWarning in test_asyncio StreamReader instantiation (GH-13243)



https://bugs.python.org/issue36884
üst f6e17ddf
......@@ -94,7 +94,7 @@ class StreamReaderTests(BaseTest):
def test_readline(self):
DATA = b'line1\nline2\nline3'
stream = asyncio.StreamReader(loop=self.loop)
stream = asyncio.StreamReader(loop=self.loop, _asyncio_internal=True)
stream.feed_data(DATA)
stream.feed_eof()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment