Skip to content

Commit 0a6a412

Browse files
scotchkaserhiy-storchaka
authored andcommitted
bpo-36091: Remove reference to async generator in Lib/types.py. (GH-11996)
1 parent 848037c commit 0a6a412

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
@@ -62,7 +62,7 @@ def _m(self): pass
6262
GetSetDescriptorType = type(FunctionType.__code__)
6363
MemberDescriptorType = type(FunctionType.__globals__)
6464

65-
del sys, _f, _g, _C, _c, # Not for export
65+
del sys, _f, _g, _C, _c, _ag # Not for export
6666

6767

6868
# 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)