From 2ab023554f9d462e53f5b3ff1b4fcc1f195ed876 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Fri, 22 Feb 2019 22:08:45 -0800 Subject: [PATCH 1/2] remove reference to async generator --- Lib/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/types.py b/Lib/types.py index 53b588da75696bf..cf643088ea9ca3e 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -62,7 +62,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 From c8504b4fa7bdf418ff562b1e7eed4e750f9388ec Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" Date: Sat, 23 Feb 2019 06:49:06 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst 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 000000000000000..582be4493768de8 --- /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