1- _ast.ImportFrom.level
21_collections_abc.AsyncGenerator.ag_await
32_collections_abc.AsyncGenerator.ag_code
43_collections_abc.AsyncGenerator.ag_frame
@@ -8,7 +7,6 @@ _collections_abc.ItemsView.__reversed__
87_collections_abc.KeysView.__reversed__
98_collections_abc.ValuesView.__reversed__
109_weakref.ProxyType.__reversed__ # Doesn't really exist
11- ast.ImportFrom.level
1210asyncio.Future.__init__ # Usually initialized from c object
1311asyncio.futures.Future.__init__ # Usually initialized from c object
1412builtins.dict.get
@@ -75,7 +73,6 @@ tempfile.SpooledTemporaryFile.seekable
7573tempfile.SpooledTemporaryFile.writable
7674
7775# Exists at runtime, but missing from stubs
78- _ast.Tuple.dims
7976_codecs.unregister
8077_collections_abc.AsyncIterable.__class_getitem__
8178_collections_abc.Awaitable.__class_getitem__
@@ -85,8 +82,6 @@ _collections_abc.MappingView.__class_getitem__
8582_csv.Reader
8683_csv.Writer
8784_imp.source_hash
88- ast.Tuple.dims
89- ast.main
9085asynchat.__warningregistry__ # Removal planned for 3.12, can add if someone needs this
9186bdb.Breakpoint.clearBreakpoints
9287distutils.dist.DistributionMetadata.set_classifiers
@@ -194,6 +189,8 @@ os.PathLike.__class_getitem__ # PathLike is a protocol; we don't expect all Pat
194189ssl.PROTOCOL_SSLv3 # Depends on ssl compilation
195190ssl.RAND_egd # Depends on openssl compilation
196191types.CodeType.replace # stubtest thinks default values are None but None doesn't work at runtime
192+ _ast.ImportFrom.level # None on the class, but never None on instances
193+ ast.ImportFrom.level # None on the class, but never None on instances
197194
198195# These enums derive from (str, Enum). See comment in py3_common.txt
199196pstats.SortKey.__new__
0 commit comments