summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorKen Jin <kenjin@python.org>2022-10-27 02:37:12 (GMT)
committerGitHub <noreply@github.com>2022-10-27 02:37:12 (GMT)
commit8a755423eba8e19704d96905730cf7f50083eb23 (patch)
treeee00b4687f16878c550d1feec0642054014e7901 /Misc/NEWS.d
parent7b24333fff51f9ca36ef19748016cc2b39ab6301 (diff)
downloadcpython-8a755423eba8e19704d96905730cf7f50083eb23.zip
cpython-8a755423eba8e19704d96905730cf7f50083eb23.tar.gz
cpython-8a755423eba8e19704d96905730cf7f50083eb23.tar.bz2
gh-98703: Fix asyncio proactor_events calling _call_connection_lost multiple times (GH-98704)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2022-10-26-07-51-55.gh-issue-98703.0hW773.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-10-26-07-51-55.gh-issue-98703.0hW773.rst b/Misc/NEWS.d/next/Library/2022-10-26-07-51-55.gh-issue-98703.0hW773.rst
new file mode 100644
index 0000000..3107519
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-10-26-07-51-55.gh-issue-98703.0hW773.rst
@@ -0,0 +1,2 @@
+Fix :meth:`asyncio.StreamWriter.drain` to call ``protocol.connection_lost``
+callback only once on Windows.