bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)
This commit is contained in:
parent
848037c147
commit
0a6a412fb2
|
@ -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
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Clean up reference to async generator in Lib/types. Patch by Henry Chen.
|
Loading…
Reference in New Issue