]> granicus.if.org Git - python/commitdiff
bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)
authorHenry Chen <tahafut@gmail.com>
Sun, 3 Mar 2019 14:35:24 +0000 (06:35 -0800)
committerSerhiy Storchaka <storchaka@gmail.com>
Sun, 3 Mar 2019 14:35:24 +0000 (16:35 +0200)
Lib/types.py
Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst [new file with mode: 0644]

index 53b588da75696bf65ff8b11e3d4ba18b0e14c04c..cf643088ea9ca3e7763ad6d2df45a5c7adace721 100644 (file)
@@ -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 (file)
index 0000000..582be44
--- /dev/null
@@ -0,0 +1 @@
+Clean up reference to async generator in Lib/types. Patch by Henry Chen.
\ No newline at end of file