summaryrefslogtreecommitdiff
path: root/Lib/types.py
diff options
context:
space:
mode:
authorHenry Chen <tahafut@gmail.com>2019-03-03 06:35:24 -0800
committerSerhiy Storchaka <storchaka@gmail.com>2019-03-03 16:35:24 +0200
commit0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2 (patch)
treec35fb897f9fc778d0b9525b3f19220b6511a10a8 /Lib/types.py
parent848037c1476ddf86dd2798fca35527a63c764a8a (diff)
downloadcpython-git-0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2.tar.gz
bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 53b588da75..cf643088ea 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