[Python-checkins] bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)

Miss Islington (bot) webhook-mailer at python.org
Sun Mar 3 09:54:44 EST 2019


https://github.com/python/cpython/commit/cd0416466f8a6d5333d6ea52f6907c39b8a6c3bc
commit: cd0416466f8a6d5333d6ea52f6907c39b8a6c3bc
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-03-03T06:54:39-08:00
summary:

bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)

(cherry picked from commit 0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2)

Co-authored-by: Henry Chen <tahafut at gmail.com>

files:
A Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst
M Lib/types.py

diff --git a/Lib/types.py b/Lib/types.py
index ce4652f37189..2e0513ca1582 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -55,7 +55,7 @@ def _m(self): pass
 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 000000000000..582be4493768
--- /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



More information about the Python-checkins mailing list