summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-03-08 21:36:35 (GMT)
committerGitHub <noreply@github.com>2022-03-08 21:36:35 (GMT)
commit8de434b332ed92ba2db90de6ed0969aee23735c2 (patch)
tree6c7eb7560821c023e93b6d2bde329fdca4453339 /Misc/NEWS.d/next
parent95b001fe6766f491f4356f8bcf23d6895bab2342 (diff)
downloadcpython-8de434b332ed92ba2db90de6ed0969aee23735c2.zip
cpython-8de434b332ed92ba2db90de6ed0969aee23735c2.tar.gz
cpython-8de434b332ed92ba2db90de6ed0969aee23735c2.tar.bz2
bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)
This change aligns the documentation at https://docs.python.org/3/library/asyncio-eventloop.htmlGH-asyncio.Server with the actual implementation Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com> (cherry picked from commit da80d6b2f3beff519cb1457d5e055168c89f7224) Co-authored-by: Stefan Zabka <zabkaste@informatik.hu-berlin.de>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2022-03-08-22-41-59.bpo-46955.IOoonN.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-08-22-41-59.bpo-46955.IOoonN.rst b/Misc/NEWS.d/next/Library/2022-03-08-22-41-59.bpo-46955.IOoonN.rst
new file mode 100644
index 0000000..75fee12
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-03-08-22-41-59.bpo-46955.IOoonN.rst
@@ -0,0 +1,2 @@
+Expose :class:`asyncio.base_events.Server` as :class:`asyncio.Server`. Patch
+by Stefan Zabka.