mirror of
https://github.com/python/cpython.git
synced 2026-04-21 19:31:17 +00:00
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:
parent
243b2064ce
commit
cd0416466f
2 changed files with 2 additions and 1 deletions
|
|
@ -55,7 +55,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
|
||||
|
|
|
|||
|
|
@ -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