summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2019-12-07 11:22:00 (GMT)
committerGitHub <noreply@github.com>2019-12-07 11:22:00 (GMT)
commit7ddcd0caa4c2e6b43265df144f59c5aa508a94f2 (patch)
tree2f9a44dcf250d2097551a5fce2d34cacdc74d5a2 /Misc
parentdec367261e7e2bb4dd42feeb58031abed2ade683 (diff)
downloadcpython-7ddcd0caa4c2e6b43265df144f59c5aa508a94f2.zip
cpython-7ddcd0caa4c2e6b43265df144f59c5aa508a94f2.tar.gz
cpython-7ddcd0caa4c2e6b43265df144f59c5aa508a94f2.tar.bz2
bpo-38529: Fix asyncio stream warning (GH-17474)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-12-05-16-13-25.bpo-38529.yvQgx3.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-12-05-16-13-25.bpo-38529.yvQgx3.rst b/Misc/NEWS.d/next/Library/2019-12-05-16-13-25.bpo-38529.yvQgx3.rst
new file mode 100644
index 0000000..c688926
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-12-05-16-13-25.bpo-38529.yvQgx3.rst
@@ -0,0 +1,2 @@
+Drop too noisy asyncio warning about deletion of a stream without explicit
+``.close()`` call.