Skip to content

Commit cd04164

Browse files
bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)
(cherry picked from commit 0a6a412) Co-authored-by: Henry Chen <tahafut@gmail.com>
1 parent 243b206 commit cd04164

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Lib/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _m(self): pass
5555
GetSetDescriptorType = type(FunctionType.__code__)
5656
MemberDescriptorType = type(FunctionType.__globals__)
5757

58-
del sys, _f, _g, _C, _c, # Not for export
58+
del sys, _f, _g, _C, _c, _ag # Not for export
5959

6060

6161
# Provide a PEP 3115 compliant mechanism for class creation
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Clean up reference to async generator in Lib/types. Patch by Henry Chen.

0 commit comments

Comments
 (0)