From: Henry Chen Date: Sun, 3 Mar 2019 14:35:24 +0000 (-0800) Subject: bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996) X-Git-Tag: v3.8.0a3~189 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a6a412fb27d6874a0db5cc82a97f54d7c5fd0f2;p=thirdparty%2FPython%2Fcpython.git bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996) --- diff --git a/Lib/types.py b/Lib/types.py index 53b588da7569..cf643088ea9c 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 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