summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorjb2170 <email@jb2170.com>2025-01-03 10:32:36 (GMT)
committerGitHub <noreply@github.com>2025-01-03 10:32:36 (GMT)
commit830e10651b1f45cd0af36ff611397b9f53171220 (patch)
tree3984d016964a91bdfa4b158b593c0ff494afcfd2 /Misc/NEWS.d
parentbb2dfadb9221fa3035fda42a2c153c831013e3d3 (diff)
downloadcpython-830e10651b1f45cd0af36ff611397b9f53171220.zip
cpython-830e10651b1f45cd0af36ff611397b9f53171220.tar.gz
cpython-830e10651b1f45cd0af36ff611397b9f53171220.tar.bz2
gh-127529: Correct asyncio's `accept_connection` behaviour for handling `ConnectionAbortedError` (#127532)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-12-02-19-13-19.gh-issue-127529.Pj1Xtf.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-12-02-19-13-19.gh-issue-127529.Pj1Xtf.rst b/Misc/NEWS.d/next/Library/2024-12-02-19-13-19.gh-issue-127529.Pj1Xtf.rst
new file mode 100644
index 0000000..26f2fd5
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-12-02-19-13-19.gh-issue-127529.Pj1Xtf.rst
@@ -0,0 +1,4 @@
+Correct behavior of
+:func:`!asyncio.selector_events.BaseSelectorEventLoop._accept_connection`
+in handling :exc:`ConnectionAbortedError` in a loop. This improves
+performance on OpenBSD.