bpo-36091: Remove reference to async generator in Lib/types.py. (GH-1… · python/cpython@cd04164

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