summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <kumaraditya@python.org>2023-11-02 07:38:18 (GMT)
committerGitHub <noreply@github.com>2023-11-02 07:38:18 (GMT)
commit229f44d353c71185414a072017f46f125676bdd6 (patch)
tree0319ee2c69cf53eb87a11b43705f09fc2c695310 /Misc
parent794dff2fb1d9efe73a724640192c34b25f4fae85 (diff)
downloadcpython-229f44d353c71185414a072017f46f125676bdd6.zip
cpython-229f44d353c71185414a072017f46f125676bdd6.tar.gz
cpython-229f44d353c71185414a072017f46f125676bdd6.tar.bz2
GH-110894: Call loop exception handler for exceptions in client_connected_cb (#111601)
Call loop exception handler for exceptions in `client_connected_cb` of `asyncio.start_server` so that applications can handle it.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-11-01-14-03-24.gh-issue-110894.7-wZxC.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-11-01-14-03-24.gh-issue-110894.7-wZxC.rst b/Misc/NEWS.d/next/Library/2023-11-01-14-03-24.gh-issue-110894.7-wZxC.rst
new file mode 100644
index 0000000..c59fe6b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-11-01-14-03-24.gh-issue-110894.7-wZxC.rst
@@ -0,0 +1 @@
+Call loop exception handler for exceptions in ``client_connected_cb`` of :func:`asyncio.start_server` so that applications can handle it. Patch by Kumar Aditya.