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

(cherry picked from commit 0a6a412fb2)

Co-authored-by: Henry Chen <tahafut@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-03-03 06:54:39 -08:00 committed by GitHub
parent 243b2064ce
commit cd0416466f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,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

View File

@ -0,0 +1 @@
Clean up reference to async generator in Lib/types. Patch by Henry Chen.