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

This commit is contained in:
Henry Chen 2019-03-03 06:35:24 -08:00 committed by Serhiy Storchaka
parent 848037c147
commit 0a6a412fb2
2 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@ except TypeError:
GetSetDescriptorType = type(FunctionType.__code__) GetSetDescriptorType = type(FunctionType.__code__)
MemberDescriptorType = type(FunctionType.__globals__) 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 # 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.