summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2017-12-14 01:19:17 (GMT)
committerYury Selivanov <yury@magic.io>2017-12-14 01:19:17 (GMT)
commit176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf (patch)
tree308b48c9671eb33abe108d59b87eaaccad40d9eb /Misc
parentbfbf04ef18c93ca8cab0453f76aeea1d8fc23fb1 (diff)
downloadcpython-176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf.zip
cpython-176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf.tar.gz
cpython-176baa326be4ec2dc70ca0c054b7e2ab7ca6a9cf.tar.bz2
bpo-30241: implement contextlib.AbstractAsyncContextManager (#1412)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-10-10-18-56-46.bpo-30241.F_go20.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-10-18-56-46.bpo-30241.F_go20.rst b/Misc/NEWS.d/next/Library/2017-10-10-18-56-46.bpo-30241.F_go20.rst
new file mode 100644
index 0000000..9b6c6f6
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-10-10-18-56-46.bpo-30241.F_go20.rst
@@ -0,0 +1 @@
+Add contextlib.AbstractAsyncContextManager. Patch by Jelle Zijlstra.