summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenry Chen <tahafut@gmail.com>2019-03-03 14:35:24 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2019-03-03 14:35:24 (GMT)
commit0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2 (patch)
treec35fb897f9fc778d0b9525b3f19220b6511a10a8
parent848037c1476ddf86dd2798fca35527a63c764a8a (diff)
downloadcpython-0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2.zip
cpython-0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2.tar.gz
cpython-0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2.tar.bz2
bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)
-rw-r--r--Lib/types.py2
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst1
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 53b588d..cf643088 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -62,7 +62,7 @@ except TypeError:
GetSetDescriptorType = type(FunctionType.__code__)
MemberDescriptorType = type(FunctionType.__globals__)
-del sys, _f, _g, _C, _c, # Not for export
+del sys, _f, _g, _C, _c, _ag # Not for export
# Provide a PEP 3115 compliant mechanism for class creation
diff --git a/Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst b/Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst
new file mode 100644
index 0000000..582be44
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst
@@ -0,0 +1 @@
+Clean up reference to async generator in Lib/types. Patch by Henry Chen. \ No newline at end of file