mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)
This commit is contained in:
parent
848037c147
commit
0a6a412fb2
2 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue