1# For up-to-date results, run: 2# ./python Tools/c-analyzer/c-analyzer.py check --format summary 3# or 4# ./python Tools/c-analyzer/c-analyzer.py analyze 5 6 7####################################### 8# non-PyObject (61) 9 10# allocator (16) 11Objects/obmalloc.c:_PyMem static PyMemAllocatorEx _PyMem 12Objects/obmalloc.c:_PyMem_Debug static struct { debug_alloc_api_t raw; debug_alloc_api_t mem; debug_alloc_api_t obj; } _PyMem_Debug 13Objects/obmalloc.c:_PyMem_Raw static PyMemAllocatorEx _PyMem_Raw 14Objects/obmalloc.c:_PyObject static PyMemAllocatorEx _PyObject 15Objects/obmalloc.c:_PyObject_Arena static PyObjectArenaAllocator _PyObject_Arena 16Objects/obmalloc.c:_Py_tracemalloc_config struct _PyTraceMalloc_Config _Py_tracemalloc_config 17Objects/obmalloc.c:arenas static struct arena_object* arenas 18Objects/obmalloc.c:maxarenas static uint maxarenas 19Objects/obmalloc.c:narenas_currently_allocated static size_t narenas_currently_allocated 20Objects/obmalloc.c:narenas_highwater static size_t narenas_highwater 21Objects/obmalloc.c:nfp2lasta static struct arena_object* nfp2lasta[MAX_POOLS_IN_ARENA + 1] 22Objects/obmalloc.c:ntimes_arena_allocated static size_t ntimes_arena_allocated 23Objects/obmalloc.c:unused_arena_objects static struct arena_object* unused_arena_objects 24Objects/obmalloc.c:usable_arenas static struct arena_object* usable_arenas 25Objects/obmalloc.c:usedpools static poolp usedpools[2 * ((NB_SMALL_SIZE_CLASSES + 7) / 8) * 8] 26Objects/obmalloc.c:new_arena():debug_stats static int debug_stats 27 28 29# counters 30Modules/_abc.c:abc_invalidation_counter static unsigned long long abc_invalidation_counter 31Objects/bytesobject.c:_Py_null_strings Py_ssize_t _Py_null_strings 32Objects/bytesobject.c:_Py_onel_strings Py_ssize_t _Py_one_strings 33 34 35# constants (effectively) 36Objects/dictobject.c:empty_keys_struct static PyDictKeysObject empty_keys_struct 37 38 39# "initialized" 40Python/fileutils.c:_Py_open_cloexec_works int _Py_open_cloexec_works 41 42 43# other non-object (40) 44Modules/_tracemalloc.c:allocators static struct { PyMemAllocatorEx mem; PyMemAllocatorEx raw; PyMemAllocatorEx obj; } allocators 45Modules/_tracemalloc.c:tables_lock static PyThread_type_lock tables_lock 46Modules/_tracemalloc.c:tracemalloc_filenames static _Py_hashtable_t *tracemalloc_filenames 47Modules/_tracemalloc.c:tracemalloc_peak_traced_memory static size_t tracemalloc_peak_traced_memory 48Modules/_tracemalloc.c:tracemalloc_reentrant_key static Py_tss_t tracemalloc_reentrant_key 49Modules/_tracemalloc.c:tracemalloc_tracebacks static _Py_hashtable_t *tracemalloc_tracebacks 50Modules/_tracemalloc.c:tracemalloc_traced_memory static size_t tracemalloc_traced_memory 51Modules/_tracemalloc.c:tracemalloc_traces static _Py_hashtable_t *tracemalloc_traces 52Modules/faulthandler.c:old_stack static stack_t old_stack 53Modules/faulthandler.c:stack static stack_t stack 54Modules/faulthandler.c:faulthandler_dump_traceback():reentrant static volatile int reentrant 55Modules/posixmodule.c:initialized static int initialized 56Modules/signalmodule.c:initialized static int initialized 57Modules/timemodule.c:initialized static int initialized 58Objects/dictobject.c:pydict_global_version static uint64_t pydict_global_version 59Objects/floatobject.c:detected_double_format static float_format_type detected_double_format 60Objects/floatobject.c:detected_float_format static float_format_type detected_float_format 61Objects/floatobject.c:double_format static float_format_type double_format 62Objects/floatobject.c:float_format static float_format_type 63Objects.longobject.c:_Py_quick_int_allocs Py_ssize_t _Py_quick_int_allocs 64Objects.longobject.c:_Py_quick_neg_int_allocs Py_ssize_t _Py_quick_neg_int_allocs 65Objects/moduleobject.c:max_module_number static Py_ssize_t max_module_number 66Objects/object.c:_Py_RefTotal Py_ssize_t _Py_RefTotal 67Objects/tupleobject.c:_Py_fast_tuple_allocs Py_ssize_t _Py_fast_tuple_allocs 68Objects/tupleobject.c:_Py_tuple_zero_allocs Py_ssize_t _Py_tuple_zero_allocs 69Objects/typeobject.c:next_version_tag static unsigned int next_version_tag 70Python/Python-ast.c:init_types():initialized static int initialized 71Python/bootstrap_hash.c:urandom_cache static struct { int fd; dev_t st_dev; ino_t st_ino; } urandom_cache 72Python/ceval.c:lltrace static int lltrace 73Python/ceval.c:make_pending_calls():busy static int busy 74Python/dynload_shlib.c:handles static struct { dev_t dev; ino_t ino; void *handle; } handles[128] 75Python/dynload_shlib.c:nhandles static int nhandles 76Python/import.c:import_lock static PyThread_type_lock import_lock 77Python/import.c:import_lock_level static int import_lock_level 78Python/import.c:import_lock_thread static unsigned long import_lock_thread 79Python/import.c:import_find_and_load():accumulated static _PyTime_t accumulated 80Python/import.c:import_find_and_load():header static int header 81Python/import.c:import_find_and_load():import_level static int import_level 82Python/pylifecycle.c:_Py_UnhandledKeyboardInterrupt int _Py_UnhandledKeyboardInterrupt 83Python/pylifecycle.c:fatal_error():reentrant static int reentrant 84 85 86####################################### 87# PyObject (919) 88 89# singletons (7) 90Objects/boolobject.c:_Py_FalseStruct static struct _longobject _Py_FalseStruct 91Objects/boolobject.c:_Py_TrueStruct static struct _longobject _Py_TrueStruct 92Objects/boolobject.c:false_str static PyObject *false_str 93Objects/boolobject.c:true_str static PyObject *true_str 94Objects/object.c:_Py_NoneStruct PyObject _Py_NoneStruct 95Objects/object.c:_Py_NotImplementedStruct PyObject _Py_NotImplementedStruct 96Objects/sliceobject.c:_Py_EllipsisObject PyObject _Py_EllipsisObject 97 98 99# module vars (1) 100Modules/_tracemalloc.c:unknown_filename static PyObject *unknown_filename 101 102 103# other (non-cache) (5) 104Modules/_tracemalloc.c:tracemalloc_traceback static traceback_t *tracemalloc_traceback 105Modules/faulthandler.c:fatal_error static struct { int enabled; PyObject *file; int fd; int all_threads; PyInterpreterState *interp; void *exc_handler; } fatal_error 106Modules/faulthandler.c:thread static struct { PyObject *file; int fd; PY_TIMEOUT_T timeout_us; int repeat; PyInterpreterState *interp; int exit; char *header; size_t header_len; PyThread_type_lock cancel_event; PyThread_type_lock running; } thread 107Modules/signalmodule.c:Handlers static volatile struct { _Py_atomic_int tripped; PyObject *func; } Handlers[NSIG] 108Objects/setobject.c:_dummy_struct static PyObject _dummy_struct 109 110 111# caches (1) 112Python/import.c:extensions static PyObject *extensions 113 114 115# cached constants - non-str (6) 116Modules/_io/_iomodule.c:_PyIO_empty_bytes PyObject *_PyIO_empty_bytes 117Modules/_io/bufferedio.c:_PyIO_trap_eintr():eintr_int static PyObject *eintr_int 118Objects/dictobject.c:empty_values_struct static PyDictValues 119Objects/listobject.c:indexerr static PyObject *indexerr 120Python/context.c:_token_missing static PyObject *_token_missing 121Python/hamt.c:_empty_hamt static PyHamtObject *_empty_hamt 122 123 124# cached constants - str (441) 125Modules/_io/_iomodule.c:_PyIO_empty_str PyObject *_PyIO_empty_str 126Modules/_io/_iomodule.c:_PyIO_str_close PyObject *_PyIO_str_close 127Modules/_io/_iomodule.c:_PyIO_str_closed PyObject *_PyIO_str_closed 128Modules/_io/_iomodule.c:_PyIO_str_decode PyObject *_PyIO_str_decode 129Modules/_io/_iomodule.c:_PyIO_str_encode PyObject *_PyIO_str_encode 130Modules/_io/_iomodule.c:_PyIO_str_fileno PyObject *_PyIO_str_fileno 131Modules/_io/_iomodule.c:_PyIO_str_flush PyObject *_PyIO_str_flush 132Modules/_io/_iomodule.c:_PyIO_str_getstate PyObject *_PyIO_str_getstate 133Modules/_io/_iomodule.c:_PyIO_str_isatty PyObject *_PyIO_str_isatty 134Modules/_io/_iomodule.c:_PyIO_str_newlines PyObject *_PyIO_str_newlines 135Modules/_io/_iomodule.c:_PyIO_str_nl PyObject *_PyIO_str_nl 136Modules/_io/_iomodule.c:_PyIO_str_peek PyObject *_PyIO_str_peek 137Modules/_io/_iomodule.c:_PyIO_str_read PyObject *_PyIO_str_read 138Modules/_io/_iomodule.c:_PyIO_str_read1 PyObject *_PyIO_str_read1 139Modules/_io/_iomodule.c:_PyIO_str_readable PyObject *_PyIO_str_readable 140Modules/_io/_iomodule.c:_PyIO_str_readall PyObject *_PyIO_str_readall 141Modules/_io/_iomodule.c:_PyIO_str_readinto PyObject *_PyIO_str_readinto 142Modules/_io/_iomodule.c:_PyIO_str_readline PyObject *_PyIO_str_readline 143Modules/_io/_iomodule.c:_PyIO_str_reset PyObject *_PyIO_str_reset 144Modules/_io/_iomodule.c:_PyIO_str_seek PyObject *_PyIO_str_seek 145Modules/_io/_iomodule.c:_PyIO_str_seekable PyObject *_PyIO_str_seekable 146Modules/_io/_iomodule.c:_PyIO_str_setstate PyObject *_PyIO_str_setstate 147Modules/_io/_iomodule.c:_PyIO_str_tell PyObject *_PyIO_str_tell 148Modules/_io/_iomodule.c:_PyIO_str_truncate PyObject *_PyIO_str_truncate 149Modules/_io/_iomodule.c:_PyIO_str_writable PyObject *_PyIO_str_writable 150Modules/_io/_iomodule.c:_PyIO_str_write PyObject *_PyIO_str_write 151Modules/_threadmodule.c:str_dict static PyObject *str_dict 152Modules/gcmodule.c:gc_str static PyObject *gc_str 153Objects/classobject.c:instancemethod_get_doc():docstr static PyObject *docstr 154Objects/classobject.c:method_get_doc():docstr static PyObject *docstr 155Objects/codeobject.c:PyCode_NewEmpty():emptystring static PyObject *emptystring 156Objects/exceptions.c:_check_for_legacy_statements():exec_prefix static PyObject *exec_prefix 157Objects/exceptions.c:_check_for_legacy_statements():print_prefix static PyObject *print_prefix 158Objects/funcobject.c:PyFunction_NewWithQualName():__name__ static PyObject *__name__ 159Objects/unicodeobject.c:unicode_empty static PyObject *unicode_empty 160Objects/unicodeobject.c:unicode_latin1 static PyObject *unicode_latin1[256] 161Python/_warnings.c:is_internal_frame():bootstrap_string static PyObject *bootstrap_string 162Python/_warnings.c:is_internal_frame():importlib_string static PyObject *importlib_string 163Python/ast.c:u_kind static PyObject *u_kind 164Python/ast_unparse.c:_str_close_br static PyObject *_str_close_br 165Python/ast_unparse.c:_str_dbl_close_br static PyObject *_str_dbl_close_br 166Python/ast_unparse.c:_str_dbl_open_br static PyObject *_str_dbl_open_br 167Python/ast_unparse.c:_str_open_br static PyObject *_str_open_br 168Python/compile.c:__annotations__ static PyObject *__annotations__ 169Python/compile.c:__doc__ static PyObject *__doc__ 170Python/compile.c:compiler_dictcomp():name static identifier name 171Python/compile.c:compiler_from_import():empty_string static PyObject *empty_string 172Python/compile.c:compiler_genexp():name static identifier name 173Python/compile.c:compiler_lambda():name static identifier name 174Python/compile.c:compiler_listcomp():name static identifier name 175Python/compile.c:compiler_setcomp():name static identifier name 176Python/compile.c:compiler_visit_annotations():return_str static identifier return_str 177Python/import.c:PyImport_Import():builtins_str static PyObject *builtins_str 178Python/import.c:PyImport_Import():import_str static PyObject *import_str 179Python/import.c:PyImport_Import():silly_list static PyObject *silly_list 180Python/sysmodule.c:whatstrings static PyObject *whatstrings[8] 181Python/sysmodule.c:sys_displayhook():newline static PyObject *newline 182Objects/typeobject.c:object_new():comma_id _Py_static_string(comma_id, "", "") 183Objects/typeobject.c:slot_nb_add():op_id _Py_static_string(op_id, OPSTR) 184Objects/typeobject.c:slot_nb_add():rop_id _Py_static_string(op_id, OPSTR) 185Objects/typeobject.c:slot_nb_and():op_id _Py_static_string(op_id, OPSTR) 186Objects/typeobject.c:slot_nb_and():rop_id _Py_static_string(op_id, OPSTR) 187Objects/typeobject.c:slot_nb_divmod():op_id _Py_static_string(op_id, OPSTR) 188Objects/typeobject.c:slot_nb_divmod():rop_id _Py_static_string(op_id, OPSTR) 189Objects/typeobject.c:slot_nb_floor_divide():op_id _Py_static_string(op_id, OPSTR) 190Objects/typeobject.c:slot_nb_floor_divide():rop_id _Py_static_string(op_id, OPSTR) 191Objects/typeobject.c:slot_nb_lshift():op_id _Py_static_string(op_id, OPSTR) 192Objects/typeobject.c:slot_nb_lshift():rop_id _Py_static_string(op_id, OPSTR) 193Objects/typeobject.c:slot_nb_matrix_multiply():op_id _Py_static_string(op_id, OPSTR) 194Objects/typeobject.c:slot_nb_matrix_multiply():rop_id _Py_static_string(op_id, OPSTR) 195Objects/typeobject.c:slot_nb_multiply():op_id _Py_static_string(op_id, OPSTR) 196Objects/typeobject.c:slot_nb_multiply():rop_id _Py_static_string(op_id, OPSTR) 197Objects/typeobject.c:slot_nb_or():op_id _Py_static_string(op_id, OPSTR) 198Objects/typeobject.c:slot_nb_or():rop_id _Py_static_string(op_id, OPSTR) 199Objects/typeobject.c:slot_nb_power_binary():op_id _Py_static_string(op_id, OPSTR) 200Objects/typeobject.c:slot_nb_power_binary():rop_id _Py_static_string(op_id, OPSTR) 201Objects/typeobject.c:slot_nb_remainder():op_id _Py_static_string(op_id, OPSTR) 202Objects/typeobject.c:slot_nb_remainder():rop_id _Py_static_string(op_id, OPSTR) 203Objects/typeobject.c:slot_nb_rshift():op_id _Py_static_string(op_id, OPSTR) 204Objects/typeobject.c:slot_nb_rshift():rop_id _Py_static_string(op_id, OPSTR) 205Objects/typeobject.c:slot_nb_subtract():op_id _Py_static_string(op_id, OPSTR) 206Objects/typeobject.c:slot_nb_subtract():rop_id _Py_static_string(op_id, OPSTR) 207Objects/typeobject.c:slot_nb_true_divide():op_id _Py_static_string(op_id, OPSTR) 208Objects/typeobject.c:slot_nb_true_divide():rop_id _Py_static_string(op_id, OPSTR) 209Objects/typeobject.c:slot_nb_xor():op_id _Py_static_string(op_id, OPSTR) 210Objects/typeobject.c:slot_nb_xor():rop_id _Py_static_string(op_id, OPSTR) 211Python/compile.c:compiler_set_qualname():dot _Py_static_string(dot, ""."") 212Python/compile.c:compiler_set_qualname():dot_locals _Py_static_string(dot_locals, "".<locals>"") 213Python/pythonrun.c:PyId_string _Py_static_string(PyId_string, ""<string>"") 214Modules/_abc.c:PyId___abstractmethods__ _Py_IDENTIFIER(__abstractmethods__) 215Modules/_abc.c:PyId___bases__ _Py_IDENTIFIER(__bases__) 216Modules/_abc.c:PyId___class__ _Py_IDENTIFIER(__class__) 217Modules/_abc.c:PyId___dict__ _Py_IDENTIFIER(__dict__) 218Modules/_abc.c:PyId___subclasscheck__ _Py_IDENTIFIER(__subclasscheck__) 219Modules/_abc.c:PyId___subclasshook__ _Py_IDENTIFIER(__subclasshook__) 220Modules/_abc.c:PyId__abc_impl _Py_IDENTIFIER(_abc_impl) 221Modules/_collectionsmodule.c:_count_elements():PyId___setitem__ _Py_IDENTIFIER(__setitem__) 222Modules/_collectionsmodule.c:_count_elements():PyId_get _Py_IDENTIFIER(get) 223Modules/_collectionsmodule.c:defdict_reduce():PyId_items _Py_IDENTIFIER(items) 224Modules/_dbmmodule.c:dbm__exit__():PyId_close _Py_IDENTIFIER(close) 225Modules/_gdbmmodule.c:dbm__exit__():PyId_close _Py_IDENTIFIER(close) 226Modules/_io/_iomodule.c:_io_open_impl():PyId__blksize _Py_IDENTIFIER(_blksize) 227Modules/_io/_iomodule.c:_io_open_impl():PyId_isatty _Py_IDENTIFIER(isatty) 228Modules/_io/_iomodule.c:_io_open_impl():PyId_mode _Py_IDENTIFIER(mode) 229Modules/_io/bufferedio.c:PyId__dealloc_warn _Py_IDENTIFIER(_dealloc_warn) 230Modules/_io/bufferedio.c:PyId_close _Py_IDENTIFIER(close) 231Modules/_io/bufferedio.c:PyId_flush _Py_IDENTIFIER(flush) 232Modules/_io/bufferedio.c:PyId_isatty _Py_IDENTIFIER(isatty) 233Modules/_io/bufferedio.c:PyId_mode _Py_IDENTIFIER(mode) 234Modules/_io/bufferedio.c:PyId_name _Py_IDENTIFIER(name) 235Modules/_io/bufferedio.c:PyId_peek _Py_IDENTIFIER(peek) 236Modules/_io/bufferedio.c:PyId_read _Py_IDENTIFIER(read) 237Modules/_io/bufferedio.c:PyId_read1 _Py_IDENTIFIER(read1) 238Modules/_io/bufferedio.c:PyId_readable _Py_IDENTIFIER(readable) 239Modules/_io/bufferedio.c:PyId_readinto _Py_IDENTIFIER(readinto) 240Modules/_io/bufferedio.c:PyId_readinto1 _Py_IDENTIFIER(readinto1) 241Modules/_io/bufferedio.c:PyId_writable _Py_IDENTIFIER(writable) 242Modules/_io/bufferedio.c:PyId_write _Py_IDENTIFIER(write) 243Modules/_io/fileio.c:PyId_name _Py_IDENTIFIER(name) 244Modules/_io/iobase.c:PyId___IOBase_closed _Py_IDENTIFIER(__IOBase_closed) 245Modules/_io/iobase.c:PyId_read _Py_IDENTIFIER(read) 246Modules/_io/iobase.c:_io__IOBase_tell_impl():PyId_seek _Py_IDENTIFIER(seek) 247Modules/_io/iobase.c:_io__RawIOBase_read_impl():PyId_readall _Py_IDENTIFIER(readall) 248Modules/_io/iobase.c:iobase_finalize():PyId__finalizing _Py_IDENTIFIER(_finalizing) 249Modules/_io/textio.c:PyId__dealloc_warn _Py_IDENTIFIER(_dealloc_warn) 250Modules/_io/textio.c:PyId_close _Py_IDENTIFIER(close) 251Modules/_io/textio.c:PyId_decode _Py_IDENTIFIER(decode) 252Modules/_io/textio.c:PyId_fileno _Py_IDENTIFIER(fileno) 253Modules/_io/textio.c:PyId_flush _Py_IDENTIFIER(flush) 254Modules/_io/textio.c:PyId_isatty _Py_IDENTIFIER(isatty) 255Modules/_io/textio.c:PyId_mode _Py_IDENTIFIER(mode) 256Modules/_io/textio.c:PyId_name _Py_IDENTIFIER(name) 257Modules/_io/textio.c:PyId_raw _Py_IDENTIFIER(raw) 258Modules/_io/textio.c:PyId_read _Py_IDENTIFIER(read) 259Modules/_io/textio.c:PyId_readable _Py_IDENTIFIER(readable) 260Modules/_io/textio.c:PyId_replace _Py_IDENTIFIER(replace) 261Modules/_io/textio.c:PyId_reset _Py_IDENTIFIER(reset) 262Modules/_io/textio.c:PyId_seek _Py_IDENTIFIER(seek) 263Modules/_io/textio.c:PyId_seekable _Py_IDENTIFIER(seekable) 264Modules/_io/textio.c:PyId_setstate _Py_IDENTIFIER(setstate) 265Modules/_io/textio.c:PyId_strict _Py_IDENTIFIER(strict) 266Modules/_io/textio.c:PyId_tell _Py_IDENTIFIER(tell) 267Modules/_io/textio.c:PyId_writable _Py_IDENTIFIER(writable) 268Modules/_operator.c:methodcaller_reduce():PyId_partial _Py_IDENTIFIER(partial) 269Modules/_pickle.c:do_append():PyId_extend _Py_IDENTIFIER(extend) 270Modules/_pickle.c:load_build():PyId___setstate__ _Py_IDENTIFIER(__setstate__) 271Modules/_threadmodule.c:PyId_flush _Py_IDENTIFIER(flush) 272Modules/_threadmodule.c:PyId_stderr _Py_IDENTIFIER(stderr) 273Modules/arraymodule.c:array_arrayiterator___reduce___impl():PyId_iter _Py_IDENTIFIER(iter) 274Modules/faulthandler.c:PyId_enable _Py_IDENTIFIER(enable) 275Modules/faulthandler.c:PyId_fileno _Py_IDENTIFIER(fileno) 276Modules/faulthandler.c:PyId_flush _Py_IDENTIFIER(flush) 277Modules/faulthandler.c:PyId_stderr _Py_IDENTIFIER(stderr) 278Modules/itertoolsmodule.c:itertools_tee_impl():PyId___copy__ _Py_IDENTIFIER(__copy__) 279Modules/itertoolsmodule.c:zip_longest_new():PyId_fillvalue _Py_IDENTIFIER(fillvalue) 280Modules/main.c:pymain_sys_path_add_path0():PyId_path _Py_IDENTIFIER(path) 281Modules/posixmodule.c:DirEntry_test_mode():PyId_st_mode _Py_IDENTIFIER(st_mode) 282Modules/posixmodule.c:PyOS_FSPath():PyId___fspath__ _Py_IDENTIFIER(__fspath__) 283Modules/posixmodule.c:path_converter():PyId___fspath__ _Py_IDENTIFIER(__fspath__) 284Modules/posixmodule.c:wait_helper():PyId_struct_rusage _Py_IDENTIFIER(struct_rusage) 285Modules/timemodule.c:time_strptime():PyId__strptime_time _Py_IDENTIFIER(_strptime_time) 286Objects/abstract.c:PyMapping_Items():PyId_items _Py_IDENTIFIER(items) 287Objects/abstract.c:PyMapping_Keys():PyId_keys _Py_IDENTIFIER(keys) 288Objects/abstract.c:PyMapping_Values():PyId_values _Py_IDENTIFIER(values) 289Objects/abstract.c:PyNumber_Long():PyId___trunc__ _Py_IDENTIFIER(__trunc__) 290Objects/abstract.c:PyObject_Format():PyId___format__ _Py_IDENTIFIER(__format__) 291Objects/abstract.c:PyObject_GetItem():PyId___class_getitem__ _Py_IDENTIFIER(__class_getitem__) 292Objects/abstract.c:PyObject_IsInstance():PyId___instancecheck__ _Py_IDENTIFIER(__instancecheck__) 293Objects/abstract.c:PyObject_IsSubclass():PyId___subclasscheck__ _Py_IDENTIFIER(__subclasscheck__) 294Objects/abstract.c:PyObject_LengthHint():PyId___length_hint__ _Py_IDENTIFIER(__length_hint__) 295Objects/abstract.c:abstract_get_bases():PyId___bases__ _Py_IDENTIFIER(__bases__) 296Objects/abstract.c:recursive_isinstance():PyId___class__ _Py_IDENTIFIER(__class__) 297Objects/bytearrayobject.c:_common_reduce():PyId___dict__ _Py_IDENTIFIER(__dict__) 298Objects/bytearrayobject.c:bytearrayiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 299Objects/bytesobject.c:bytes_new():PyId___bytes__ _Py_IDENTIFIER(__bytes__) 300Objects/bytesobject.c:format_obj():PyId___bytes__ _Py_IDENTIFIER(__bytes__) 301Objects/bytesobject.c:striter_reduce():PyId_iter _Py_IDENTIFIER(iter) 302Objects/classobject.c:PyId___name__ _Py_IDENTIFIER(__name__) 303Objects/classobject.c:PyId___qualname__ _Py_IDENTIFIER(__qualname__) 304Objects/classobject.c:method_reduce():PyId_getattr _Py_IDENTIFIER(getattr) 305Objects/complexobject.c:try_complex_special_method():PyId___complex__ _Py_IDENTIFIER(__complex__) 306Objects/descrobject.c:calculate_qualname():PyId___qualname__ _Py_IDENTIFIER(__qualname__) 307Objects/descrobject.c:descr_reduce():PyId_getattr _Py_IDENTIFIER(getattr) 308Objects/descrobject.c:mappingproxy_copy():PyId_copy _Py_IDENTIFIER(copy) 309Objects/descrobject.c:mappingproxy_get():PyId_get _Py_IDENTIFIER(get) 310Objects/descrobject.c:mappingproxy_items():PyId_items _Py_IDENTIFIER(items) 311Objects/descrobject.c:mappingproxy_keys():PyId_keys _Py_IDENTIFIER(keys) 312Objects/descrobject.c:mappingproxy_values():PyId_values _Py_IDENTIFIER(values) 313Objects/descrobject.c:property_init_impl():PyId___doc__ _Py_IDENTIFIER(__doc__) 314Objects/descrobject.c:wrapper_reduce():PyId_getattr _Py_IDENTIFIER(getattr) 315Objects/dictobject.c:_PyDictView_Intersect():PyId_intersection_update _Py_IDENTIFIER(intersection_update) 316Objects/dictobject.c:dict_subscript():PyId___missing__ _Py_IDENTIFIER(__missing__) 317Objects/dictobject.c:dict_update_common():PyId_keys _Py_IDENTIFIER(keys) 318Objects/dictobject.c:dictiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 319Objects/dictobject.c:dictviews_or():PyId_update _Py_IDENTIFIER(update) 320Objects/dictobject.c:dictviews_sub():PyId_difference_update _Py_IDENTIFIER(difference_update) 321Objects/dictobject.c:dictviews_xor():PyId_symmetric_difference_update _Py_IDENTIFIER(symmetric_difference_update) 322Objects/enumobject.c:reversed_new_impl():PyId___reversed__ _Py_IDENTIFIER(__reversed__) 323Objects/exceptions.c:ImportError_getstate():PyId_name _Py_IDENTIFIER(name) 324Objects/exceptions.c:ImportError_getstate():PyId_path _Py_IDENTIFIER(path) 325Objects/fileobject.c:PyFile_FromFd():PyId_open _Py_IDENTIFIER(open) 326Objects/fileobject.c:PyFile_GetLine():PyId_readline _Py_IDENTIFIER(readline) 327Objects/fileobject.c:PyFile_OpenCodeObject():PyId_open _Py_IDENTIFIER(open) 328Objects/fileobject.c:PyFile_WriteObject():PyId_write _Py_IDENTIFIER(write) 329Objects/fileobject.c:PyObject_AsFileDescriptor():PyId_fileno _Py_IDENTIFIER(fileno) 330Objects/frameobject.c:PyId___builtins__ _Py_IDENTIFIER(__builtins__) 331Objects/genobject.c:_gen_throw():PyId_throw _Py_IDENTIFIER(throw) 332Objects/genobject.c:gen_close_iter():PyId_close _Py_IDENTIFIER(close) 333Objects/iterobject.c:calliter_reduce():PyId_iter _Py_IDENTIFIER(iter) 334Objects/iterobject.c:iter_reduce():PyId_iter _Py_IDENTIFIER(iter) 335Objects/listobject.c:listiter_reduce_general():PyId_iter _Py_IDENTIFIER(iter) 336Objects/listobject.c:listiter_reduce_general():PyId_reversed _Py_IDENTIFIER(reversed) 337Objects/longobject.c:PyId_big _Py_IDENTIFIER(big) 338Objects/longobject.c:PyId_little _Py_IDENTIFIER(little) 339Objects/methodobject.c:meth_get__qualname__():PyId___qualname__ _Py_IDENTIFIER(__qualname__) 340Objects/methodobject.c:meth_reduce():PyId_getattr _Py_IDENTIFIER(getattr) 341Objects/moduleobject.c:PyModule_GetFilenameObject():PyId___file__ _Py_IDENTIFIER(__file__) 342Objects/moduleobject.c:PyModule_GetNameObject():PyId___name__ _Py_IDENTIFIER(__name__) 343Objects/moduleobject.c:PyModule_SetDocString():PyId___doc__ _Py_IDENTIFIER(__doc__) 344Objects/moduleobject.c:_PyModuleSpec_IsInitializing():PyId__initializing _Py_IDENTIFIER(_initializing) 345Objects/moduleobject.c:module_dir():PyId___dict__ _Py_IDENTIFIER(__dict__) 346Objects/moduleobject.c:module_dir():PyId___dir__ _Py_IDENTIFIER(__dir__) 347Objects/moduleobject.c:module_getattro():PyId___getattr__ _Py_IDENTIFIER(__getattr__) 348Objects/moduleobject.c:module_getattro():PyId___name__ _Py_IDENTIFIER(__name__) 349Objects/moduleobject.c:module_getattro():PyId___spec__ _Py_IDENTIFIER(__spec__) 350Objects/moduleobject.c:module_init_dict():PyId___doc__ _Py_IDENTIFIER(__doc__) 351Objects/moduleobject.c:module_init_dict():PyId___loader__ _Py_IDENTIFIER(__loader__) 352Objects/moduleobject.c:module_init_dict():PyId___name__ _Py_IDENTIFIER(__name__) 353Objects/moduleobject.c:module_init_dict():PyId___package__ _Py_IDENTIFIER(__package__) 354Objects/moduleobject.c:module_init_dict():PyId___spec__ _Py_IDENTIFIER(__spec__) 355Objects/object.c:PyId_Py_Repr _Py_IDENTIFIER(Py_Repr) 356Objects/object.c:PyId___bytes__ _Py_IDENTIFIER(__bytes__) 357Objects/object.c:PyId___dir__ _Py_IDENTIFIER(__dir__) 358Objects/object.c:PyId___isabstractmethod__ _Py_IDENTIFIER(__isabstractmethod__) 359Objects/odictobject.c:mutablemapping_update():PyId_items _Py_IDENTIFIER(items) 360Objects/odictobject.c:mutablemapping_update():PyId_keys _Py_IDENTIFIER(keys) 361Objects/odictobject.c:odict_reduce():PyId___dict__ _Py_IDENTIFIER(__dict__) 362Objects/odictobject.c:odict_reduce():PyId_items _Py_IDENTIFIER(items) 363Objects/odictobject.c:odict_repr():PyId_items _Py_IDENTIFIER(items) 364Objects/odictobject.c:odictiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 365Objects/rangeobject.c:longrangeiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 366Objects/rangeobject.c:rangeiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 367Objects/setobject.c:set_reduce():PyId___dict__ _Py_IDENTIFIER(__dict__) 368Objects/setobject.c:setiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 369Objects/structseq.c:PyId_n_fields _Py_IDENTIFIER(n_fields) 370Objects/structseq.c:PyId_n_sequence_fields _Py_IDENTIFIER(n_sequence_fields) 371Objects/structseq.c:PyId_n_unnamed_fields _Py_IDENTIFIER(n_unnamed_fields) 372Objects/tupleobject.c:tupleiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 373Objects/typeobject.c:PyId___abstractmethods__ _Py_IDENTIFIER(__abstractmethods__) 374Objects/typeobject.c:PyId___class__ _Py_IDENTIFIER(__class__) 375Objects/typeobject.c:PyId___class_getitem__ _Py_IDENTIFIER(__class_getitem__) 376Objects/typeobject.c:PyId___delitem__ _Py_IDENTIFIER(__delitem__) 377Objects/typeobject.c:PyId___dict__ _Py_IDENTIFIER(__dict__) 378Objects/typeobject.c:PyId___doc__ _Py_IDENTIFIER(__doc__) 379Objects/typeobject.c:PyId___getattribute__ _Py_IDENTIFIER(__getattribute__) 380Objects/typeobject.c:PyId___getitem__ _Py_IDENTIFIER(__getitem__) 381Objects/typeobject.c:PyId___hash__ _Py_IDENTIFIER(__hash__) 382Objects/typeobject.c:PyId___init_subclass__ _Py_IDENTIFIER(__init_subclass__) 383Objects/typeobject.c:PyId___len__ _Py_IDENTIFIER(__len__) 384Objects/typeobject.c:PyId___module__ _Py_IDENTIFIER(__module__) 385Objects/typeobject.c:PyId___name__ _Py_IDENTIFIER(__name__) 386Objects/typeobject.c:PyId___new__ _Py_IDENTIFIER(__new__) 387Objects/typeobject.c:PyId___set_name__ _Py_IDENTIFIER(__set_name__) 388Objects/typeobject.c:PyId___setitem__ _Py_IDENTIFIER(__setitem__) 389Objects/typeobject.c:PyId_builtins _Py_IDENTIFIER(builtins) 390Objects/typeobject.c:_PyObject_GetItemsIter():PyId_items _Py_IDENTIFIER(items) 391Objects/typeobject.c:_PyObject_GetNewArguments():PyId___getnewargs__ _Py_IDENTIFIER(__getnewargs__) 392Objects/typeobject.c:_PyObject_GetNewArguments():PyId___getnewargs_ex__ _Py_IDENTIFIER(__getnewargs_ex__) 393Objects/typeobject.c:_PyObject_GetState():PyId___getstate__ _Py_IDENTIFIER(__getstate__) 394Objects/typeobject.c:_PyType_GetSlotNames():PyId___slotnames__ _Py_IDENTIFIER(__slotnames__) 395Objects/typeobject.c:_PyType_GetSlotNames():PyId__slotnames _Py_IDENTIFIER(_slotnames) 396Objects/typeobject.c:import_copyreg():PyId_copyreg _Py_IDENTIFIER(copyreg) 397Objects/typeobject.c:merge_class_dict():PyId___bases__ _Py_IDENTIFIER(__bases__) 398Objects/typeobject.c:mro_invoke():PyId_mro _Py_IDENTIFIER(mro) 399Objects/typeobject.c:object___reduce_ex___impl():PyId___reduce__ _Py_IDENTIFIER(__reduce__) 400Objects/typeobject.c:overrides_hash():PyId___eq__ _Py_IDENTIFIER(__eq__) 401Objects/typeobject.c:reduce_newobj():PyId___newobj__ _Py_IDENTIFIER(__newobj__) 402Objects/typeobject.c:reduce_newobj():PyId___newobj_ex__ _Py_IDENTIFIER(__newobj_ex__) 403Objects/typeobject.c:slot_am_aiter():PyId___aiter__ _Py_IDENTIFIER(__aiter__) 404Objects/typeobject.c:slot_am_anext():PyId___anext__ _Py_IDENTIFIER(__anext__) 405Objects/typeobject.c:slot_am_await():PyId___await__ _Py_IDENTIFIER(__await__) 406Objects/typeobject.c:slot_nb_bool():PyId___bool__ _Py_IDENTIFIER(__bool__) 407Objects/typeobject.c:slot_nb_index():PyId___index__ _Py_IDENTIFIER(__index__) 408Objects/typeobject.c:slot_nb_inplace_power():PyId___ipow__ _Py_IDENTIFIER(__ipow__) 409Objects/typeobject.c:slot_nb_power():PyId___pow__ _Py_IDENTIFIER(__pow__) 410Objects/typeobject.c:slot_sq_contains():PyId___contains__ _Py_IDENTIFIER(__contains__) 411Objects/typeobject.c:slot_tp_call():PyId___call__ _Py_IDENTIFIER(__call__) 412Objects/typeobject.c:slot_tp_descr_get():PyId___get__ _Py_IDENTIFIER(__get__) 413Objects/typeobject.c:slot_tp_descr_set():PyId___delete__ _Py_IDENTIFIER(__delete__) 414Objects/typeobject.c:slot_tp_descr_set():PyId___set__ _Py_IDENTIFIER(__set__) 415Objects/typeobject.c:slot_tp_finalize():PyId___del__ _Py_IDENTIFIER(__del__) 416Objects/typeobject.c:slot_tp_getattr_hook():PyId___getattr__ _Py_IDENTIFIER(__getattr__) 417Objects/typeobject.c:slot_tp_init():PyId___init__ _Py_IDENTIFIER(__init__) 418Objects/typeobject.c:slot_tp_iter():PyId___iter__ _Py_IDENTIFIER(__iter__) 419Objects/typeobject.c:slot_tp_iternext():PyId___next__ _Py_IDENTIFIER(__next__) 420Objects/typeobject.c:slot_tp_repr():PyId___repr__ _Py_IDENTIFIER(__repr__) 421Objects/typeobject.c:slot_tp_setattro():PyId___delattr__ _Py_IDENTIFIER(__delattr__) 422Objects/typeobject.c:slot_tp_setattro():PyId___setattr__ _Py_IDENTIFIER(__setattr__) 423Objects/typeobject.c:type_mro_modified():PyId_mro _Py_IDENTIFIER(mro) 424Objects/typeobject.c:type_new():PyId___classcell__ _Py_IDENTIFIER(__classcell__) 425Objects/typeobject.c:type_new():PyId___mro_entries__ _Py_IDENTIFIER(__mro_entries__) 426Objects/typeobject.c:type_new():PyId___qualname__ _Py_IDENTIFIER(__qualname__) 427Objects/typeobject.c:type_new():PyId___slots__ _Py_IDENTIFIER(__slots__) 428Objects/unicodeobject.c:unicodeiter_reduce():PyId_iter _Py_IDENTIFIER(iter) 429Objects/weakrefobject.c:proxy_bytes():PyId___bytes__ _Py_IDENTIFIER(__bytes__) 430Objects/weakrefobject.c:weakref_repr():PyId___name__ _Py_IDENTIFIER(__name__) 431Parser/tokenizer.c:fp_setreadl():PyId_open _Py_IDENTIFIER(open) 432Parser/tokenizer.c:fp_setreadl():PyId_readline _Py_IDENTIFIER(readline) 433Python/Python-ast.c:ast_type_reduce():PyId___dict__ _Py_IDENTIFIER(__dict__) 434Python/Python-ast.c:make_type():PyId___module__ _Py_IDENTIFIER(__module__) 435Python/_warnings.c:PyId_stderr _Py_IDENTIFIER(stderr) 436Python/_warnings.c:_PyErr_WarnUnawaitedCoroutine():PyId__warn_unawaited_coroutine _Py_IDENTIFIER(_warn_unawaited_coroutine) 437Python/_warnings.c:already_warned():PyId_version _Py_IDENTIFIER(version) 438Python/_warnings.c:call_show_warning():PyId_WarningMessage _Py_IDENTIFIER(WarningMessage) 439Python/_warnings.c:call_show_warning():PyId__showwarnmsg _Py_IDENTIFIER(_showwarnmsg) 440Python/_warnings.c:check_matched():PyId_match _Py_IDENTIFIER(match) 441Python/_warnings.c:get_default_action():PyId_defaultaction _Py_IDENTIFIER(defaultaction) 442Python/_warnings.c:get_filter():PyId_filters _Py_IDENTIFIER(filters) 443Python/_warnings.c:get_once_registry():PyId_onceregistry _Py_IDENTIFIER(onceregistry) 444Python/_warnings.c:get_source_line():PyId___loader__ _Py_IDENTIFIER(__loader__) 445Python/_warnings.c:get_source_line():PyId___name__ _Py_IDENTIFIER(__name__) 446Python/_warnings.c:get_source_line():PyId_get_source _Py_IDENTIFIER(get_source) 447Python/_warnings.c:get_warnings_attr():PyId_warnings _Py_IDENTIFIER(warnings) 448Python/_warnings.c:setup_context():PyId___name__ _Py_IDENTIFIER(__name__) 449Python/_warnings.c:setup_context():PyId___warningregistry__ _Py_IDENTIFIER(__warningregistry__) 450Python/_warnings.c:show_warning():PyId___name__ _Py_IDENTIFIER(__name__) 451Python/bltinmodule.c:PyId___builtins__ _Py_IDENTIFIER(__builtins__) 452Python/bltinmodule.c:PyId___dict__ _Py_IDENTIFIER(__dict__) 453Python/bltinmodule.c:PyId___mro_entries__ _Py_IDENTIFIER(__mro_entries__) 454Python/bltinmodule.c:PyId___prepare__ _Py_IDENTIFIER(__prepare__) 455Python/bltinmodule.c:PyId___round__ _Py_IDENTIFIER(__round__) 456Python/bltinmodule.c:PyId_encoding _Py_IDENTIFIER(encoding) 457Python/bltinmodule.c:PyId_errors _Py_IDENTIFIER(errors) 458Python/bltinmodule.c:PyId_fileno _Py_IDENTIFIER(fileno) 459Python/bltinmodule.c:PyId_flush _Py_IDENTIFIER(flush) 460Python/bltinmodule.c:PyId_metaclass _Py_IDENTIFIER(metaclass) 461Python/bltinmodule.c:PyId_sort _Py_IDENTIFIER(sort) 462Python/bltinmodule.c:PyId_stderr _Py_IDENTIFIER(stderr) 463Python/bltinmodule.c:PyId_stdin _Py_IDENTIFIER(stdin) 464Python/bltinmodule.c:PyId_stdout _Py_IDENTIFIER(stdout) 465Python/ceval.c:_PyEval_EvalFrameDefault():PyId___aenter__ _Py_IDENTIFIER(__aenter__) 466Python/ceval.c:_PyEval_EvalFrameDefault():PyId___aexit__ _Py_IDENTIFIER(__aexit__) 467Python/ceval.c:_PyEval_EvalFrameDefault():PyId___annotations__ _Py_IDENTIFIER(__annotations__) 468Python/ceval.c:_PyEval_EvalFrameDefault():PyId___build_class__ _Py_IDENTIFIER(__build_class__) 469Python/ceval.c:_PyEval_EvalFrameDefault():PyId___enter__ _Py_IDENTIFIER(__enter__) 470Python/ceval.c:_PyEval_EvalFrameDefault():PyId___exit__ _Py_IDENTIFIER(__exit__) 471Python/ceval.c:_PyEval_EvalFrameDefault():PyId_displayhook _Py_IDENTIFIER(displayhook) 472Python/ceval.c:_PyEval_EvalFrameDefault():PyId_send _Py_IDENTIFIER(send) 473Python/ceval.c:import_all_from():PyId___all__ _Py_IDENTIFIER(__all__) 474Python/ceval.c:import_all_from():PyId___dict__ _Py_IDENTIFIER(__dict__) 475Python/ceval.c:import_all_from():PyId___name__ _Py_IDENTIFIER(__name__) 476Python/ceval.c:import_from():PyId___name__ _Py_IDENTIFIER(__name__) 477Python/ceval.c:import_name():PyId___import__ _Py_IDENTIFIER(__import__) 478Python/codecs.c:_PyCodec_LookupTextEncoding():PyId__is_text_encoding _Py_IDENTIFIER(_is_text_encoding) 479Python/compile.c:compiler_enter_scope():PyId___class__ _Py_IDENTIFIER(__class__) 480Python/errors.c:PyId_builtins _Py_IDENTIFIER(builtins) 481Python/errors.c:PyId_flush _Py_IDENTIFIER(flush) 482Python/errors.c:PyId_stderr _Py_IDENTIFIER(stderr) 483Python/errors.c:PyErr_NewException():PyId___module__ _Py_IDENTIFIER(__module__) 484Python/errors.c:PyErr_SyntaxLocationObject():PyId_filename _Py_IDENTIFIER(filename) 485Python/errors.c:PyErr_SyntaxLocationObject():PyId_lineno _Py_IDENTIFIER(lineno) 486Python/errors.c:PyErr_SyntaxLocationObject():PyId_msg _Py_IDENTIFIER(msg) 487Python/errors.c:PyErr_SyntaxLocationObject():PyId_offset _Py_IDENTIFIER(offset) 488Python/errors.c:PyErr_SyntaxLocationObject():PyId_print_file_and_line _Py_IDENTIFIER(print_file_and_line) 489Python/errors.c:PyErr_SyntaxLocationObject():PyId_text _Py_IDENTIFIER(text) 490Python/errors.c:_PyErr_WriteUnraisableMsg():PyId_unraisablehook _Py_IDENTIFIER(unraisablehook) 491Python/import.c:PyImport_Cleanup():PyId_clear _Py_IDENTIFIER(clear) 492Python/import.c:PyImport_ExecCodeModuleObject():PyId__fix_up_module _Py_IDENTIFIER(_fix_up_module) 493Python/import.c:PyImport_ExecCodeModuleWithPathnames():PyId__get_sourcefile _Py_IDENTIFIER(_get_sourcefile) 494Python/import.c:PyImport_ImportModuleLevelObject():PyId___path__ _Py_IDENTIFIER(__path__) 495Python/import.c:PyImport_ImportModuleLevelObject():PyId___spec__ _Py_IDENTIFIER(__spec__) 496Python/import.c:PyImport_ImportModuleLevelObject():PyId__handle_fromlist _Py_IDENTIFIER(_handle_fromlist) 497Python/import.c:PyImport_ImportModuleLevelObject():PyId__lock_unlock_module _Py_IDENTIFIER(_lock_unlock_module) 498Python/import.c:PyImport_ReloadModule():PyId_imp _Py_IDENTIFIER(imp) 499Python/import.c:PyImport_ReloadModule():PyId_reload _Py_IDENTIFIER(reload) 500Python/import.c:_PyImportZip_Init():PyId_zipimporter _Py_IDENTIFIER(zipimporter) 501Python/import.c:import_find_and_load():PyId__find_and_load _Py_IDENTIFIER(_find_and_load) 502Python/import.c:module_dict_for_exec():PyId___builtins__ _Py_IDENTIFIER(__builtins__) 503Python/import.c:resolve_name():PyId___name__ _Py_IDENTIFIER(__name__) 504Python/import.c:resolve_name():PyId___package__ _Py_IDENTIFIER(__package__) 505Python/import.c:resolve_name():PyId___path__ _Py_IDENTIFIER(__path__) 506Python/import.c:resolve_name():PyId___spec__ _Py_IDENTIFIER(__spec__) 507Python/import.c:resolve_name():PyId_parent _Py_IDENTIFIER(parent) 508Python/importdl.c:get_encoded_name():PyId_replace _Py_IDENTIFIER(replace) 509Python/marshal.c:marshal_dump_impl():PyId_write _Py_IDENTIFIER(write) 510Python/marshal.c:marshal_load():PyId_read _Py_IDENTIFIER(read) 511Python/marshal.c:r_string():PyId_readinto _Py_IDENTIFIER(readinto) 512Python/pylifecycle.c:PyId_flush _Py_IDENTIFIER(flush) 513Python/pylifecycle.c:PyId_name _Py_IDENTIFIER(name) 514Python/pylifecycle.c:PyId_stderr _Py_IDENTIFIER(stderr) 515Python/pylifecycle.c:PyId_stdin _Py_IDENTIFIER(stdin) 516Python/pylifecycle.c:PyId_stdout _Py_IDENTIFIER(stdout) 517Python/pylifecycle.c:PyId_threading _Py_IDENTIFIER(threading) 518Python/pylifecycle.c:create_stdio():PyId_TextIOWrapper _Py_IDENTIFIER(TextIOWrapper) 519Python/pylifecycle.c:create_stdio():PyId_isatty _Py_IDENTIFIER(isatty) 520Python/pylifecycle.c:create_stdio():PyId_mode _Py_IDENTIFIER(mode) 521Python/pylifecycle.c:create_stdio():PyId_open _Py_IDENTIFIER(open) 522Python/pylifecycle.c:create_stdio():PyId_raw _Py_IDENTIFIER(raw) 523Python/pylifecycle.c:wait_for_thread_shutdown():PyId__shutdown _Py_IDENTIFIER(_shutdown) 524Python/pythonrun.c:PyId_builtins _Py_IDENTIFIER(builtins) 525Python/pythonrun.c:PyId_excepthook _Py_IDENTIFIER(excepthook) 526Python/pythonrun.c:PyId_flush _Py_IDENTIFIER(flush) 527Python/pythonrun.c:PyId_last_traceback _Py_IDENTIFIER(last_traceback) 528Python/pythonrun.c:PyId_last_type _Py_IDENTIFIER(last_type) 529Python/pythonrun.c:PyId_last_value _Py_IDENTIFIER(last_value) 530Python/pythonrun.c:PyId_ps1 _Py_IDENTIFIER(ps1) 531Python/pythonrun.c:PyId_ps2 _Py_IDENTIFIER(ps2) 532Python/pythonrun.c:PyId_stderr _Py_IDENTIFIER(stderr) 533Python/pythonrun.c:PyId_stdin _Py_IDENTIFIER(stdin) 534Python/pythonrun.c:PyId_stdout _Py_IDENTIFIER(stdout) 535Python/pythonrun.c:PyRun_InteractiveOneObjectEx():PyId___main__ _Py_IDENTIFIER(__main__) 536Python/pythonrun.c:PyRun_InteractiveOneObjectEx():PyId_encoding _Py_IDENTIFIER(encoding) 537Python/pythonrun.c:_Py_HandleSystemExit():PyId_code _Py_IDENTIFIER(code) 538Python/pythonrun.c:parse_syntax_error():PyId_filename _Py_IDENTIFIER(filename) 539Python/pythonrun.c:parse_syntax_error():PyId_lineno _Py_IDENTIFIER(lineno) 540Python/pythonrun.c:parse_syntax_error():PyId_msg _Py_IDENTIFIER(msg) 541Python/pythonrun.c:parse_syntax_error():PyId_offset _Py_IDENTIFIER(offset) 542Python/pythonrun.c:parse_syntax_error():PyId_text _Py_IDENTIFIER(text) 543Python/pythonrun.c:print_exception():PyId___module__ _Py_IDENTIFIER(__module__) 544Python/pythonrun.c:print_exception():PyId_print_file_and_line _Py_IDENTIFIER(print_file_and_line) 545Python/sysmodule.c:PyId__ _Py_IDENTIFIER(_) 546Python/sysmodule.c:PyId___sizeof__ _Py_IDENTIFIER(__sizeof__) 547Python/sysmodule.c:PyId__xoptions _Py_IDENTIFIER(_xoptions) 548Python/sysmodule.c:PyId_buffer _Py_IDENTIFIER(buffer) 549Python/sysmodule.c:PyId_builtins _Py_IDENTIFIER(builtins) 550Python/sysmodule.c:PyId_encoding _Py_IDENTIFIER(encoding) 551Python/sysmodule.c:PyId_path _Py_IDENTIFIER(path) 552Python/sysmodule.c:PyId_stderr _Py_IDENTIFIER(stderr) 553Python/sysmodule.c:PyId_stdout _Py_IDENTIFIER(stdout) 554Python/sysmodule.c:PyId_warnoptions _Py_IDENTIFIER(warnoptions) 555Python/sysmodule.c:PyId_write _Py_IDENTIFIER(write) 556Python/traceback.c:PyId_TextIOWrapper _Py_IDENTIFIER(TextIOWrapper) 557Python/traceback.c:PyId_close _Py_IDENTIFIER(close) 558Python/traceback.c:PyId_open _Py_IDENTIFIER(open) 559Python/traceback.c:PyId_path _Py_IDENTIFIER(path) 560Objects/typeobject.c:name_op static _Py_Identifier name_op[] 561Objects/unicodeobject.c:static_strings static _Py_Identifier *static_strings 562 563 564# PyTypeObject (311) 565Modules/_abc.c:_abc_data_type static PyTypeObject _abc_data_type 566Modules/_blake2/blake2b_impl.c:PyBlake2_BLAKE2bType PyTypeObject PyBlake2_BLAKE2bType 567Modules/_blake2/blake2s_impl.c:PyBlake2_BLAKE2sType PyTypeObject PyBlake2_BLAKE2sType 568Modules/_collectionsmodule.c:defdict_type static PyTypeObject defdict_type 569Modules/_collectionsmodule.c:deque_type static PyTypeObject deque_type 570Modules/_collectionsmodule.c:dequeiter_type static PyTypeObject dequeiter_type 571Modules/_collectionsmodule.c:dequereviter_type static PyTypeObject dequereviter_type 572Modules/_collectionsmodule.c:tuplegetter_type static PyTypeObject tuplegetter_type 573Modules/_functoolsmodule.c:keyobject_type static PyTypeObject keyobject_type 574Modules/_functoolsmodule.c:lru_cache_type static PyTypeObject lru_cache_type 575Modules/_functoolsmodule.c:lru_list_elem_type static PyTypeObject lru_list_elem_type 576Modules/_functoolsmodule.c:partial_type static PyTypeObject partial_type 577Modules/_io/bufferedio.c:PyBufferedIOBase_Type PyTypeObject PyBufferedIOBase_Type 578Modules/_io/bufferedio.c:PyBufferedRWPair_Type PyTypeObject PyBufferedRWPair_Type 579Modules/_io/bufferedio.c:PyBufferedRandom_Type PyTypeObject PyBufferedRandom_Type 580Modules/_io/bufferedio.c:PyBufferedReader_Type PyTypeObject PyBufferedReader_Type 581Modules/_io/bufferedio.c:PyBufferedWriter_Type PyTypeObject PyBufferedWriter_Type 582Modules/_io/bytesio.c:PyBytesIO_Type PyTypeObject PyBytesIO_Type 583Modules/_io/bytesio.c:_PyBytesIOBuffer_Type PyTypeObject _PyBytesIOBuffer_Type 584Modules/_io/fileio.c:PyFileIO_Type PyTypeObject PyFileIO_Type 585Modules/_io/iobase.c:PyIOBase_Type PyTypeObject PyIOBase_Type 586Modules/_io/iobase.c:PyRawIOBase_Type PyTypeObject PyRawIOBase_Type 587Modules/_io/stringio.c:PyStringIO_Type PyTypeObject PyStringIO_Type 588Modules/_io/textio.c:PyIncrementalNewlineDecoder_Type PyTypeObject PyIncrementalNewlineDecoder_Type 589Modules/_io/textio.c:PyTextIOBase_Type PyTypeObject PyTextIOBase_Type 590Modules/_io/textio.c:PyTextIOWrapper_Type PyTypeObject PyTextIOWrapper_Type 591Modules/_operator.c:attrgetter_type static PyTypeObject attrgetter_type 592Modules/_operator.c:itemgetter_type static PyTypeObject itemgetter_type 593Modules/_operator.c:methodcaller_type static PyTypeObject methodcaller_type 594Modules/_sre.c:Match_Type static PyTypeObject Match_Type 595Modules/_sre.c:Pattern_Type static PyTypeObject Pattern_Type 596Modules/_sre.c:Scanner_Type static PyTypeObject Scanner_Type 597Modules/_threadmodule.c:ExceptHookArgsType static PyTypeObject ExceptHookArgsType 598Modules/_threadmodule.c:Locktype static PyTypeObject Locktype 599Modules/_threadmodule.c:RLocktype static PyTypeObject RLocktype 600Modules/_threadmodule.c:localdummytype static PyTypeObject localdummytype 601Modules/_threadmodule.c:localtype static PyTypeObject localtype 602Modules/itertoolsmodule.c:_grouper_type static PyTypeObject _grouper_type 603Modules/itertoolsmodule.c:accumulate_type static PyTypeObject accumulate_type 604Modules/itertoolsmodule.c:chain_type static PyTypeObject chain_type 605Modules/itertoolsmodule.c:combinations_type static PyTypeObject combinations_type 606Modules/itertoolsmodule.c:compress_type static PyTypeObject compress_type 607Modules/itertoolsmodule.c:count_type static PyTypeObject count_type 608Modules/itertoolsmodule.c:cwr_type static PyTypeObject cwr_type 609Modules/itertoolsmodule.c:cycle_type static PyTypeObject cycle_type 610Modules/itertoolsmodule.c:dropwhile_type static PyTypeObject dropwhile_type 611Modules/itertoolsmodule.c:filterfalse_type static PyTypeObject filterfalse_type 612Modules/itertoolsmodule.c:groupby_type static PyTypeObject groupby_type 613Modules/itertoolsmodule.c:islice_type static PyTypeObject islice_type 614Modules/itertoolsmodule.c:permutations_type static PyTypeObject permutations_type 615Modules/itertoolsmodule.c:product_type static PyTypeObject product_type 616Modules/itertoolsmodule.c:repeat_type static PyTypeObject repeat_type 617Modules/itertoolsmodule.c:starmap_type static PyTypeObject starmap_type 618Modules/itertoolsmodule.c:takewhile_type static PyTypeObject takewhile_type 619Modules/itertoolsmodule.c:tee_type static PyTypeObject tee_type 620Modules/itertoolsmodule.c:teedataobject_type static PyTypeObject teedataobject_type 621Modules/itertoolsmodule.c:ziplongest_type static PyTypeObject ziplongest_type 622Modules/signalmodule.c:SiginfoType static PyTypeObject SiginfoType 623Modules/timemodule.c:StructTimeType static PyTypeObject StructTimeType 624Modules/xxsubtype.c:spamdict_type static PyTypeObject spamdict_type 625Modules/xxsubtype.c:spamlist_type static PyTypeObject spamlist_type 626Objects/boolobject.c:PyBool_Type PyTypeObject PyBool_Type 627Objects/bytearrayobject.c:PyByteArrayIter_Type PyTypeObject PyByteArrayIter_Type 628Objects/bytearrayobject.c:PyByteArray_Type PyTypeObject PyByteArray_Type 629Objects/bytesobject.c:PyBytesIter_Type PyTypeObject PyBytesIter_Type 630Objects/bytesobject.c:PyBytes_Type PyTypeObject PyBytes_Type 631Objects/capsule.c:PyCapsule_Type PyTypeObject PyCapsule_Type 632Objects/cellobject.c:PyCell_Type PyTypeObject PyCell_Type 633Objects/classobject.c:PyInstanceMethod_Type PyTypeObject PyInstanceMethod_Type 634Objects/classobject.c:PyMethod_Type PyTypeObject PyMethod_Type 635Objects/codeobject.c:PyCode_Type PyTypeObject PyCode_Type 636Objects/complexobject.c:PyComplex_Type PyTypeObject PyComplex_Type 637Objects/descrobject.c:PyClassMethodDescr_Type PyTypeObject PyClassMethodDescr_Type 638Objects/descrobject.c:PyDictProxy_Type PyTypeObject PyDictProxy_Type 639Objects/descrobject.c:PyGetSetDescr_Type PyTypeObject PyGetSetDescr_Type 640Objects/descrobject.c:PyMemberDescr_Type PyTypeObject PyMemberDescr_Type 641Objects/descrobject.c:PyMethodDescr_Type PyTypeObject PyMethodDescr_Type 642Objects/descrobject.c:PyProperty_Type PyTypeObject PyProperty_Type 643Objects/descrobject.c:PyWrapperDescr_Type PyTypeObject PyWrapperDescr_Type 644Objects/descrobject.c:_PyMethodWrapper_Type PyTypeObject _PyMethodWrapper_Type 645Objects/dictobject.c:PyDictItems_Type PyTypeObject PyDictItems_Type 646Objects/dictobject.c:PyDictIterItem_Type PyTypeObject PyDictIterItem_Type 647Objects/dictobject.c:PyDictIterKey_Type PyTypeObject PyDictIterKey_Type 648Objects/dictobject.c:PyDictIterValue_Type PyTypeObject PyDictIterValue_Type 649Objects/dictobject.c:PyDictKeys_Type PyTypeObject PyDictKeys_Type 650Objects/dictobject.c:PyDictRevIterItem_Type PyTypeObject PyDictRevIterItem_Type 651Objects/dictobject.c:PyDictRevIterKey_Type PyTypeObject PyDictRevIterKey_Type 652Objects/dictobject.c:PyDictRevIterValue_Type PyTypeObject PyDictRevIterValue_Type 653Objects/dictobject.c:PyDictValues_Type PyTypeObject PyDictValues_Type 654Objects/dictobject.c:PyDict_Type PyTypeObject PyDict_Type 655Objects/enumobject.c:PyEnum_Type PyTypeObject PyEnum_Type 656Objects/enumobject.c:PyReversed_Type PyTypeObject PyReversed_Type 657Objects/exceptions.c:PyExc_ArithmeticError static PyTypeObject PyExc_ArithmeticError 658Objects/exceptions.c:PyExc_AssertionError static PyTypeObject PyExc_AssertionError 659Objects/exceptions.c:PyExc_AttributeError static PyTypeObject PyExc_AttributeError 660Objects/exceptions.c:PyExc_BaseException static PyTypeObject PyExc_BaseException 661Objects/exceptions.c:PyExc_BlockingIOError static PyTypeObject PyExc_BlockingIOError 662Objects/exceptions.c:PyExc_BrokenPipeError static PyTypeObject PyExc_BrokenPipeError 663Objects/exceptions.c:PyExc_BufferError static PyTypeObject PyExc_BufferError 664Objects/exceptions.c:PyExc_BytesWarning static PyTypeObject PyExc_BytesWarning 665Objects/exceptions.c:PyExc_ChildProcessError static PyTypeObject PyExc_ChildProcessError 666Objects/exceptions.c:PyExc_ConnectionAbortedError static PyTypeObject PyExc_ConnectionAbortedError 667Objects/exceptions.c:PyExc_ConnectionError static PyTypeObject PyExc_ConnectionError 668Objects/exceptions.c:PyExc_ConnectionRefusedError static PyTypeObject PyExc_ConnectionRefusedError 669Objects/exceptions.c:PyExc_ConnectionResetError static PyTypeObject PyExc_ConnectionResetError 670Objects/exceptions.c:PyExc_DeprecationWarning static PyTypeObject PyExc_DeprecationWarning 671Objects/exceptions.c:PyExc_EOFError static PyTypeObject PyExc_EOFError 672Objects/exceptions.c:PyExc_EnvironmentError static PyTypeObject PyExc_EnvironmentError 673Objects/exceptions.c:PyExc_Exception static PyTypeObject PyExc_Exception 674Objects/exceptions.c:PyExc_FileExistsError static PyTypeObject PyExc_FileExistsError 675Objects/exceptions.c:PyExc_FileNotFoundError static PyTypeObject PyExc_FileNotFoundError 676Objects/exceptions.c:PyExc_FloatingPointError static PyTypeObject PyExc_FloatingPointError 677Objects/exceptions.c:PyExc_FutureWarning static PyTypeObject PyExc_FutureWarning 678Objects/exceptions.c:PyExc_GeneratorExit static PyTypeObject PyExc_GeneratorExit 679Objects/exceptions.c:PyExc_IOError static PyTypeObject PyExc_IOError 680Objects/exceptions.c:PyExc_ImportError static PyTypeObject PyExc_ImportError 681Objects/exceptions.c:PyExc_ImportWarning static PyTypeObject PyExc_ImportWarning 682Objects/exceptions.c:PyExc_IndentationError static PyTypeObject PyExc_IndentationError 683Objects/exceptions.c:PyExc_IndexError static PyTypeObject PyExc_IndexError 684Objects/exceptions.c:PyExc_InterruptedError static PyTypeObject PyExc_InterruptedError 685Objects/exceptions.c:PyExc_IsADirectoryError static PyTypeObject PyExc_IsADirectoryError 686Objects/exceptions.c:PyExc_KeyError static PyTypeObject PyExc_KeyError 687Objects/exceptions.c:PyExc_KeyboardInterrupt static PyTypeObject PyExc_KeyboardInterrupt 688Objects/exceptions.c:PyExc_LookupError static PyTypeObject PyExc_LookupError 689Objects/exceptions.c:PyExc_MemoryError static PyTypeObject PyExc_MemoryError 690Objects/exceptions.c:PyExc_ModuleNotFoundError static PyTypeObject PyExc_ModuleNotFoundError 691Objects/exceptions.c:PyExc_NameError static PyTypeObject PyExc_NameError 692Objects/exceptions.c:PyExc_NotADirectoryError static PyTypeObject PyExc_NotADirectoryError 693Objects/exceptions.c:PyExc_NotImplementedError static PyTypeObject PyExc_NotImplementedError 694Objects/exceptions.c:PyExc_OSError static PyTypeObject PyExc_OSError 695Objects/exceptions.c:PyExc_OverflowError static PyTypeObject PyExc_OverflowError 696Objects/exceptions.c:PyExc_PendingDeprecationWarning static PyTypeObject PyExc_PendingDeprecationWarning 697Objects/exceptions.c:PyExc_PermissionError static PyTypeObject PyExc_PermissionError 698Objects/exceptions.c:PyExc_ProcessLookupError static PyTypeObject PyExc_ProcessLookupError 699Objects/exceptions.c:PyExc_RecursionError static PyTypeObject PyExc_RecursionError 700Objects/exceptions.c:PyExc_ReferenceError static PyTypeObject PyExc_ReferenceError 701Objects/exceptions.c:PyExc_ResourceWarning static PyTypeObject PyExc_ResourceWarning 702Objects/exceptions.c:PyExc_RuntimeError static PyTypeObject PyExc_RuntimeError 703Objects/exceptions.c:PyExc_RuntimeWarning static PyTypeObject PyExc_RuntimeWarning 704Objects/exceptions.c:PyExc_StopAsyncIteration static PyTypeObject PyExc_StopAsyncIteration 705Objects/exceptions.c:PyExc_StopIteration static PyTypeObject PyExc_StopIteration 706Objects/exceptions.c:PyExc_SyntaxError static PyTypeObject PyExc_SyntaxError 707Objects/exceptions.c:PyExc_SyntaxWarning static PyTypeObject PyExc_SyntaxWarning 708Objects/exceptions.c:PyExc_SystemError static PyTypeObject PyExc_SystemError 709Objects/exceptions.c:PyExc_SystemExit static PyTypeObject PyExc_SystemExit 710Objects/exceptions.c:PyExc_TabError static PyTypeObject PyExc_TabError 711Objects/exceptions.c:PyExc_TimeoutError static PyTypeObject PyExc_TimeoutError 712Objects/exceptions.c:PyExc_TypeError static PyTypeObject PyExc_TypeError 713Objects/exceptions.c:PyExc_UnboundLocalError static PyTypeObject PyExc_UnboundLocalError 714Objects/exceptions.c:PyExc_UnicodeDecodeError static PyTypeObject PyExc_UnicodeDecodeError 715Objects/exceptions.c:PyExc_UnicodeEncodeError static PyTypeObject PyExc_UnicodeEncodeError 716Objects/exceptions.c:PyExc_UnicodeError static PyTypeObject PyExc_UnicodeError 717Objects/exceptions.c:PyExc_UnicodeTranslateError static PyTypeObject PyExc_UnicodeTranslateError 718Objects/exceptions.c:PyExc_UnicodeWarning static PyTypeObject PyExc_UnicodeWarning 719Objects/exceptions.c:PyExc_UserWarning static PyTypeObject PyExc_UserWarning 720Objects/exceptions.c:PyExc_ValueError static PyTypeObject PyExc_ValueError 721Objects/exceptions.c:PyExc_Warning static PyTypeObject PyExc_Warning 722Objects/exceptions.c:PyExc_ZeroDivisionError static PyTypeObject PyExc_ZeroDivisionError 723Objects/exceptions.c:_PyExc_ArithmeticError static PyTypeObject _PyExc_ArithmeticError 724Objects/exceptions.c:_PyExc_AssertionError static PyTypeObject _PyExc_AssertionError 725Objects/exceptions.c:_PyExc_AttributeError static PyTypeObject _PyExc_AttributeError 726Objects/exceptions.c:_PyExc_BaseException static PyTypeObject _PyExc_BaseException 727Objects/exceptions.c:_PyExc_BlockingIOError static PyTypeObject _PyExc_BlockingIOError 728Objects/exceptions.c:_PyExc_BrokenPipeError static PyTypeObject _PyExc_BrokenPipeError 729Objects/exceptions.c:_PyExc_BufferError static PyTypeObject _PyExc_BufferError 730Objects/exceptions.c:_PyExc_BytesWarning static PyTypeObject _PyExc_BytesWarning 731Objects/exceptions.c:_PyExc_ChildProcessError static PyTypeObject _PyExc_ChildProcessError 732Objects/exceptions.c:_PyExc_ConnectionAbortedError static PyTypeObject _PyExc_ConnectionAbortedError 733Objects/exceptions.c:_PyExc_ConnectionError static PyTypeObject _PyExc_ConnectionError 734Objects/exceptions.c:_PyExc_ConnectionRefusedError static PyTypeObject _PyExc_ConnectionRefusedError 735Objects/exceptions.c:_PyExc_ConnectionResetError static PyTypeObject _PyExc_ConnectionResetError 736Objects/exceptions.c:_PyExc_DeprecationWarning static PyTypeObject _PyExc_DeprecationWarning 737Objects/exceptions.c:_PyExc_EOFError static PyTypeObject _PyExc_EOFError 738Objects/exceptions.c:_PyExc_Exception static PyTypeObject _PyExc_Exception 739Objects/exceptions.c:_PyExc_FileExistsError static PyTypeObject _PyExc_FileExistsError 740Objects/exceptions.c:_PyExc_FileNotFoundError static PyTypeObject _PyExc_FileNotFoundError 741Objects/exceptions.c:_PyExc_FloatingPointError static PyTypeObject _PyExc_FloatingPointError 742Objects/exceptions.c:_PyExc_FutureWarning static PyTypeObject _PyExc_FutureWarning 743Objects/exceptions.c:_PyExc_GeneratorExit static PyTypeObject _PyExc_GeneratorExit 744Objects/exceptions.c:_PyExc_ImportError static PyTypeObject _PyExc_ImportError 745Objects/exceptions.c:_PyExc_ImportWarning static PyTypeObject _PyExc_ImportWarning 746Objects/exceptions.c:_PyExc_IndentationError static PyTypeObject _PyExc_IndentationError 747Objects/exceptions.c:_PyExc_IndexError static PyTypeObject _PyExc_IndexError 748Objects/exceptions.c:_PyExc_InterruptedError static PyTypeObject _PyExc_InterruptedError 749Objects/exceptions.c:_PyExc_IsADirectoryError static PyTypeObject _PyExc_IsADirectoryError 750Objects/exceptions.c:_PyExc_KeyError static PyTypeObject _PyExc_KeyError 751Objects/exceptions.c:_PyExc_KeyboardInterrupt static PyTypeObject _PyExc_KeyboardInterrupt 752Objects/exceptions.c:_PyExc_LookupError static PyTypeObject _PyExc_LookupError 753Objects/exceptions.c:_PyExc_MemoryError static PyTypeObject _PyExc_MemoryError 754Objects/exceptions.c:_PyExc_ModuleNotFoundError static PyTypeObject _PyExc_ModuleNotFoundError 755Objects/exceptions.c:_PyExc_NameError static PyTypeObject _PyExc_NameError 756Objects/exceptions.c:_PyExc_NotADirectoryError static PyTypeObject _PyExc_NotADirectoryError 757Objects/exceptions.c:_PyExc_NotImplementedError static PyTypeObject _PyExc_NotImplementedError 758Objects/exceptions.c:_PyExc_OSError static PyTypeObject _PyExc_OSError 759Objects/exceptions.c:_PyExc_OverflowError static PyTypeObject _PyExc_OverflowError 760Objects/exceptions.c:_PyExc_PendingDeprecationWarning static PyTypeObject _PyExc_PendingDeprecationWarning 761Objects/exceptions.c:_PyExc_PermissionError static PyTypeObject _PyExc_PermissionError 762Objects/exceptions.c:_PyExc_ProcessLookupError static PyTypeObject _PyExc_ProcessLookupError 763Objects/exceptions.c:_PyExc_RecursionError static PyTypeObject _PyExc_RecursionError 764Objects/exceptions.c:_PyExc_ReferenceError static PyTypeObject _PyExc_ReferenceError 765Objects/exceptions.c:_PyExc_ResourceWarning static PyTypeObject _PyExc_ResourceWarning 766Objects/exceptions.c:_PyExc_RuntimeError static PyTypeObject _PyExc_RuntimeError 767Objects/exceptions.c:_PyExc_RuntimeWarning static PyTypeObject _PyExc_RuntimeWarning 768Objects/exceptions.c:_PyExc_StopAsyncIteration static PyTypeObject _PyExc_StopAsyncIteration 769Objects/exceptions.c:_PyExc_StopIteration static PyTypeObject _PyExc_StopIteration 770Objects/exceptions.c:_PyExc_SyntaxError static PyTypeObject _PyExc_SyntaxError 771Objects/exceptions.c:_PyExc_SyntaxWarning static PyTypeObject _PyExc_SyntaxWarning 772Objects/exceptions.c:_PyExc_SystemError static PyTypeObject _PyExc_SystemError 773Objects/exceptions.c:_PyExc_SystemExit static PyTypeObject _PyExc_SystemExit 774Objects/exceptions.c:_PyExc_TabError static PyTypeObject _PyExc_TabError 775Objects/exceptions.c:_PyExc_TimeoutError static PyTypeObject _PyExc_TimeoutError 776Objects/exceptions.c:_PyExc_TypeError static PyTypeObject _PyExc_TypeError 777Objects/exceptions.c:_PyExc_UnboundLocalError static PyTypeObject _PyExc_UnboundLocalError 778Objects/exceptions.c:_PyExc_UnicodeDecodeError static PyTypeObject _PyExc_UnicodeDecodeError 779Objects/exceptions.c:_PyExc_UnicodeEncodeError static PyTypeObject _PyExc_UnicodeEncodeError 780Objects/exceptions.c:_PyExc_UnicodeError static PyTypeObject _PyExc_UnicodeError 781Objects/exceptions.c:_PyExc_UnicodeTranslateError static PyTypeObject _PyExc_UnicodeTranslateError 782Objects/exceptions.c:_PyExc_UnicodeWarning static PyTypeObject _PyExc_UnicodeWarning 783Objects/exceptions.c:_PyExc_UserWarning static PyTypeObject _PyExc_UserWarning 784Objects/exceptions.c:_PyExc_ValueError static PyTypeObject _PyExc_ValueError 785Objects/exceptions.c:_PyExc_Warning static PyTypeObject _PyExc_Warning 786Objects/exceptions.c:_PyExc_ZeroDivisionError static PyTypeObject _PyExc_ZeroDivisionError 787Objects/fileobject.c:PyStdPrinter_Type PyTypeObject PyStdPrinter_Type 788Objects/floatobject.c:FloatInfoType static PyTypeObject FloatInfoType 789Objects/floatobject.c:PyFloat_Type PyTypeObject PyFloat_Type 790Objects/frameobject.c:PyFrame_Type PyTypeObject PyFrame_Type 791Objects/funcobject.c:PyClassMethod_Type PyTypeObject PyClassMethod_Type 792Objects/funcobject.c:PyFunction_Type PyTypeObject PyFunction_Type 793Objects/funcobject.c:PyStaticMethod_Type PyTypeObject PyStaticMethod_Type 794Objects/genobject.c:PyAsyncGen_Type PyTypeObject PyAsyncGen_Type 795Objects/genobject.c:PyCoro_Type PyTypeObject PyCoro_Type 796Objects/genobject.c:PyGen_Type PyTypeObject PyGen_Type 797Objects/genobject.c:_PyAsyncGenASend_Type PyTypeObject _PyAsyncGenASend_Type 798Objects/genobject.c:_PyAsyncGenAThrow_Type PyTypeObject _PyAsyncGenAThrow_Type 799Objects/genobject.c:_PyAsyncGenWrappedValue_Type PyTypeObject _PyAsyncGenWrappedValue_Type 800Objects/genobject.c:_PyCoroWrapper_Type PyTypeObject _PyCoroWrapper_Type 801Objects/interpreteridobject.c:_PyInterpreterID_Type PyTypeObject _PyInterpreterID_Type 802Objects/iterobject.c:PyCallIter_Type PyTypeObject PyCallIter_Type 803Objects/iterobject.c:PySeqIter_Type PyTypeObject PySeqIter_Type 804Objects/listobject.c:PyListIter_Type PyTypeObject PyListIter_Type 805Objects/listobject.c:PyListRevIter_Type PyTypeObject PyListRevIter_Type 806Objects/listobject.c:PyList_Type PyTypeObject PyList_Type 807Objects/longobject.c:Int_InfoType static PyTypeObject Int_InfoType 808Objects/longobject.c:PyLong_Type PyTypeObject PyLong_Type 809Objects/memoryobject.c:PyMemoryView_Type PyTypeObject PyMemoryView_Type 810Objects/memoryobject.c:_PyManagedBuffer_Type PyTypeObject _PyManagedBuffer_Type 811Objects/methodobject.c:PyCFunction_Type PyTypeObject PyCFunction_Type 812Objects/moduleobject.c:PyModuleDef_Type PyTypeObject PyModuleDef_Type 813Objects/moduleobject.c:PyModule_Type PyTypeObject PyModule_Type 814Objects/namespaceobject.c:_PyNamespace_Type PyTypeObject _PyNamespace_Type 815Objects/object.c:_PyNone_Type PyTypeObject _PyNone_Type 816Objects/object.c:_PyNotImplemented_Type PyTypeObject _PyNotImplemented_Type 817Objects/odictobject.c:PyODictItems_Type PyTypeObject PyODictItems_Type 818Objects/odictobject.c:PyODictIter_Type PyTypeObject PyODictIter_Type 819Objects/odictobject.c:PyODictKeys_Type PyTypeObject PyODictKeys_Type 820Objects/odictobject.c:PyODictValues_Type PyTypeObject PyODictValues_Type 821Objects/odictobject.c:PyODict_Type PyTypeObject PyODict_Type 822Objects/picklebufobject.c:PyPickleBuffer_Type PyTypeObject PyPickleBuffer_Type 823Objects/rangeobject.c:PyLongRangeIter_Type PyTypeObject PyLongRangeIter_Type 824Objects/rangeobject.c:PyRangeIter_Type PyTypeObject PyRangeIter_Type 825Objects/rangeobject.c:PyRange_Type PyTypeObject PyRange_Type 826Objects/setobject.c:PyFrozenSet_Type PyTypeObject PyFrozenSet_Type 827Objects/setobject.c:PySetIter_Type PyTypeObject PySetIter_Type 828Objects/setobject.c:PySet_Type PyTypeObject PySet_Type 829Objects/setobject.c:_PySetDummy_Type static PyTypeObject _PySetDummy_Type 830Objects/sliceobject.c:PyEllipsis_Type PyTypeObject PyEllipsis_Type 831Objects/sliceobject.c:PySlice_Type PyTypeObject PySlice_Type 832Objects/stringlib/unicode_format.h:PyFieldNameIter_Type static PyTypeObject PyFieldNameIter_Type 833Objects/stringlib/unicode_format.h:PyFormatterIter_Type static PyTypeObject PyFormatterIter_Type 834Objects/tupleobject.c:PyTupleIter_Type PyTypeObject PyTupleIter_Type 835Objects/tupleobject.c:PyTuple_Type PyTypeObject PyTuple_Type 836Objects/typeobject.c:PyBaseObject_Type PyTypeObject PyBaseObject_Type 837Objects/typeobject.c:PySuper_Type PyTypeObject PySuper_Type 838Objects/typeobject.c:PyType_Type PyTypeObject PyType_Type 839Objects/unicodeobject.c:EncodingMapType static PyTypeObject EncodingMapType 840Objects/unicodeobject.c:PyUnicodeIter_Type PyTypeObject PyUnicodeIter_Type 841Objects/unicodeobject.c:PyUnicode_Type PyTypeObject PyUnicode_Type 842Objects/weakrefobject.c:_PyWeakref_CallableProxyType PyTypeObject _PyWeakref_CallableProxyType 843Objects/weakrefobject.c:_PyWeakref_ProxyType PyTypeObject _PyWeakref_ProxyType 844Objects/weakrefobject.c:_PyWeakref_RefType PyTypeObject _PyWeakref_RefType 845Python/bltinmodule.c:PyFilter_Type PyTypeObject PyFilter_Type 846Python/bltinmodule.c:PyMap_Type PyTypeObject PyMap_Type 847Python/bltinmodule.c:PyZip_Type PyTypeObject PyZip_Type 848Python/context.c:PyContextTokenMissing_Type PyTypeObject PyContextTokenMissing_Type 849Python/context.c:PyContextToken_Type PyTypeObject PyContextToken_Type 850Python/context.c:PyContextVar_Type PyTypeObject PyContextVar_Type 851Python/context.c:PyContext_Type PyTypeObject PyContext_Type 852Python/errors.c:UnraisableHookArgsType static PyTypeObject UnraisableHookArgsType 853Python/hamt.c:_PyHamtItems_Type PyTypeObject _PyHamtItems_Type 854Python/hamt.c:_PyHamtKeys_Type PyTypeObject _PyHamtKeys_Type 855Python/hamt.c:_PyHamtValues_Type PyTypeObject _PyHamtValues_Type 856Python/hamt.c:_PyHamt_ArrayNode_Type PyTypeObject _PyHamt_ArrayNode_Type 857Python/hamt.c:_PyHamt_BitmapNode_Type PyTypeObject _PyHamt_BitmapNode_Type 858Python/hamt.c:_PyHamt_CollisionNode_Type PyTypeObject _PyHamt_CollisionNode_Type 859Python/hamt.c:_PyHamt_Type PyTypeObject _PyHamt_Type 860Python/symtable.c:PySTEntry_Type PyTypeObject PySTEntry_Type 861Python/sysmodule.c:AsyncGenHooksType static PyTypeObject AsyncGenHooksType 862Python/sysmodule.c:FlagsType static PyTypeObject FlagsType 863Python/sysmodule.c:Hash_InfoType static PyTypeObject Hash_InfoType 864Python/sysmodule.c:VersionInfoType static PyTypeObject VersionInfoType 865Python/thread.c:ThreadInfoType static PyTypeObject ThreadInfoType 866Python/traceback.c:PyTraceBack_Type PyTypeObject PyTraceBack_Type 867 868 869# _PyArg_Parser (147) 870Modules/_blake2/clinic/blake2b_impl.c.h:py_blake2b_new():_parser static _PyArg_Parser _parser 871Modules/_blake2/clinic/blake2s_impl.c.h:py_blake2s_new():_parser static _PyArg_Parser _parser 872Modules/_io/clinic/_iomodule.c.h:_io_open():_parser static _PyArg_Parser _parser 873Modules/_io/clinic/_iomodule.c.h:_io_open_code():_parser static _PyArg_Parser _parser 874Modules/_io/clinic/bufferedio.c.h:_io_BufferedRandom___init__():_parser static _PyArg_Parser _parser 875Modules/_io/clinic/bufferedio.c.h:_io_BufferedReader___init__():_parser static _PyArg_Parser _parser 876Modules/_io/clinic/bufferedio.c.h:_io_BufferedWriter___init__():_parser static _PyArg_Parser _parser 877Modules/_io/clinic/bytesio.c.h:_io_BytesIO___init__():_parser static _PyArg_Parser _parser 878Modules/_io/clinic/fileio.c.h:_io_FileIO___init__():_parser static _PyArg_Parser _parser 879Modules/_io/clinic/stringio.c.h:_io_StringIO___init__():_parser static _PyArg_Parser _parser 880Modules/_io/clinic/textio.c.h:_io_IncrementalNewlineDecoder___init__():_parser static _PyArg_Parser _parser 881Modules/_io/clinic/textio.c.h:_io_IncrementalNewlineDecoder_decode():_parser static _PyArg_Parser _parser 882Modules/_io/clinic/textio.c.h:_io_TextIOWrapper___init__():_parser static _PyArg_Parser _parser 883Modules/_io/clinic/textio.c.h:_io_TextIOWrapper_reconfigure():_parser static _PyArg_Parser _parser 884Modules/_io/clinic/winconsoleio.c.h:_io__WindowsConsoleIO___init__():_parser static _PyArg_Parser _parser 885Modules/_multiprocessing/clinic/posixshmem.c.h:_posixshmem_shm_open():_parser static _PyArg_Parser _parser 886Modules/_multiprocessing/clinic/posixshmem.c.h:_posixshmem_shm_unlink():_parser static _PyArg_Parser _parser 887Modules/cjkcodecs/clinic/multibytecodec.c.h:_multibytecodec_MultibyteCodec_decode():_parser static _PyArg_Parser _parser 888Modules/cjkcodecs/clinic/multibytecodec.c.h:_multibytecodec_MultibyteCodec_encode():_parser static _PyArg_Parser _parser 889Modules/cjkcodecs/clinic/multibytecodec.c.h:_multibytecodec_MultibyteIncrementalDecoder_decode():_parser static _PyArg_Parser _parser 890Modules/cjkcodecs/clinic/multibytecodec.c.h:_multibytecodec_MultibyteIncrementalEncoder_encode():_parser static _PyArg_Parser _parser 891Modules/clinic/_asynciomodule.c.h:_asyncio_Future___init__():_parser static _PyArg_Parser _parser 892Modules/clinic/_asynciomodule.c.h:_asyncio_Future_add_done_callback():_parser static _PyArg_Parser _parser 893Modules/clinic/_asynciomodule.c.h:_asyncio_Task___init__():_parser static _PyArg_Parser _parser 894Modules/clinic/_asynciomodule.c.h:_asyncio_Task_all_tasks():_parser static _PyArg_Parser _parser 895Modules/clinic/_asynciomodule.c.h:_asyncio_Task_current_task():_parser static _PyArg_Parser _parser 896Modules/clinic/_asynciomodule.c.h:_asyncio_Task_get_stack():_parser static _PyArg_Parser _parser 897Modules/clinic/_asynciomodule.c.h:_asyncio_Task_print_stack():_parser static _PyArg_Parser _parser 898Modules/clinic/_asynciomodule.c.h:_asyncio__enter_task():_parser static _PyArg_Parser _parser 899Modules/clinic/_asynciomodule.c.h:_asyncio__leave_task():_parser static _PyArg_Parser _parser 900Modules/clinic/_asynciomodule.c.h:_asyncio__register_task():_parser static _PyArg_Parser _parser 901Modules/clinic/_asynciomodule.c.h:_asyncio__unregister_task():_parser static _PyArg_Parser _parser 902Modules/clinic/_bz2module.c.h:_bz2_BZ2Decompressor_decompress():_parser static _PyArg_Parser _parser 903Modules/clinic/_codecsmodule.c.h:_codecs_decode():_parser static _PyArg_Parser _parser 904Modules/clinic/_codecsmodule.c.h:_codecs_encode():_parser static _PyArg_Parser _parser 905Modules/clinic/_cursesmodule.c.h:_curses_setupterm():_parser static _PyArg_Parser _parser 906Modules/clinic/_datetimemodule.c.h:datetime_datetime_now():_parser static _PyArg_Parser _parser 907Modules/clinic/_elementtree.c.h:_elementtree_Element_find():_parser static _PyArg_Parser _parser 908Modules/clinic/_elementtree.c.h:_elementtree_Element_findall():_parser static _PyArg_Parser _parser 909Modules/clinic/_elementtree.c.h:_elementtree_Element_findtext():_parser static _PyArg_Parser _parser 910Modules/clinic/_elementtree.c.h:_elementtree_Element_get():_parser static _PyArg_Parser _parser 911Modules/clinic/_elementtree.c.h:_elementtree_Element_getiterator():_parser static _PyArg_Parser _parser 912Modules/clinic/_elementtree.c.h:_elementtree_Element_iter():_parser static _PyArg_Parser _parser 913Modules/clinic/_elementtree.c.h:_elementtree_Element_iterfind():_parser static _PyArg_Parser _parser 914Modules/clinic/_elementtree.c.h:_elementtree_TreeBuilder___init__():_parser static _PyArg_Parser _parser 915Modules/clinic/_elementtree.c.h:_elementtree_XMLParser___init__():_parser static _PyArg_Parser _parser 916Modules/clinic/_hashopenssl.c.h:EVP_new():_parser static _PyArg_Parser _parser 917Modules/clinic/_hashopenssl.c.h:_hashlib_hmac_digest():_parser static _PyArg_Parser _parser 918Modules/clinic/_hashopenssl.c.h:_hashlib_scrypt():_parser static _PyArg_Parser _parser 919Modules/clinic/_hashopenssl.c.h:pbkdf2_hmac():_parser static _PyArg_Parser _parser 920Modules/clinic/_lzmamodule.c.h:_lzma_LZMADecompressor___init__():_parser static _PyArg_Parser _parser 921Modules/clinic/_lzmamodule.c.h:_lzma_LZMADecompressor_decompress():_parser static _PyArg_Parser _parser 922Modules/clinic/_opcode.c.h:_opcode_stack_effect():_parser static _PyArg_Parser _parser 923Modules/clinic/_pickle.c.h:_pickle_Pickler___init__():_parser static _PyArg_Parser _parser 924Modules/clinic/_pickle.c.h:_pickle_Unpickler___init__():_parser static _PyArg_Parser _parser 925Modules/clinic/_pickle.c.h:_pickle_dump():_parser static _PyArg_Parser _parser 926Modules/clinic/_pickle.c.h:_pickle_dumps():_parser static _PyArg_Parser _parser 927Modules/clinic/_pickle.c.h:_pickle_load():_parser static _PyArg_Parser _parser 928Modules/clinic/_pickle.c.h:_pickle_loads():_parser static _PyArg_Parser _parser 929Modules/clinic/_queuemodule.c.h:_queue_SimpleQueue_get():_parser static _PyArg_Parser _parser 930Modules/clinic/_queuemodule.c.h:_queue_SimpleQueue_put():_parser static _PyArg_Parser _parser 931Modules/clinic/_queuemodule.c.h:_queue_SimpleQueue_put_nowait():_parser static _PyArg_Parser _parser 932Modules/clinic/_sre.c.h:_sre_SRE_Match_expand():_parser static _PyArg_Parser _parser 933Modules/clinic/_sre.c.h:_sre_SRE_Match_groupdict():_parser static _PyArg_Parser _parser 934Modules/clinic/_sre.c.h:_sre_SRE_Match_groups():_parser static _PyArg_Parser _parser 935Modules/clinic/_sre.c.h:_sre_SRE_Pattern_findall():_parser static _PyArg_Parser _parser 936Modules/clinic/_sre.c.h:_sre_SRE_Pattern_finditer():_parser static _PyArg_Parser _parser 937Modules/clinic/_sre.c.h:_sre_SRE_Pattern_fullmatch():_parser static _PyArg_Parser _parser 938Modules/clinic/_sre.c.h:_sre_SRE_Pattern_match():_parser static _PyArg_Parser _parser 939Modules/clinic/_sre.c.h:_sre_SRE_Pattern_scanner():_parser static _PyArg_Parser _parser 940Modules/clinic/_sre.c.h:_sre_SRE_Pattern_search():_parser static _PyArg_Parser _parser 941Modules/clinic/_sre.c.h:_sre_SRE_Pattern_split():_parser static _PyArg_Parser _parser 942Modules/clinic/_sre.c.h:_sre_SRE_Pattern_sub():_parser static _PyArg_Parser _parser 943Modules/clinic/_sre.c.h:_sre_SRE_Pattern_subn():_parser static _PyArg_Parser _parser 944Modules/clinic/_sre.c.h:_sre_compile():_parser static _PyArg_Parser _parser 945Modules/clinic/_ssl.c.h:_ssl__SSLContext__wrap_bio():_parser static _PyArg_Parser _parser 946Modules/clinic/_ssl.c.h:_ssl__SSLContext__wrap_socket():_parser static _PyArg_Parser _parser 947Modules/clinic/_ssl.c.h:_ssl__SSLContext_get_ca_certs():_parser static _PyArg_Parser _parser 948Modules/clinic/_ssl.c.h:_ssl__SSLContext_load_cert_chain():_parser static _PyArg_Parser _parser 949Modules/clinic/_ssl.c.h:_ssl__SSLContext_load_verify_locations():_parser static _PyArg_Parser _parser 950Modules/clinic/_ssl.c.h:_ssl__SSLSocket_get_channel_binding():_parser static _PyArg_Parser _parser 951Modules/clinic/_ssl.c.h:_ssl_enum_certificates():_parser static _PyArg_Parser _parser 952Modules/clinic/_ssl.c.h:_ssl_enum_crls():_parser static _PyArg_Parser _parser 953Modules/clinic/_ssl.c.h:_ssl_txt2obj():_parser static _PyArg_Parser _parser 954Modules/clinic/_struct.c.h:Struct___init__():_parser static _PyArg_Parser _parser 955Modules/clinic/_struct.c.h:Struct_unpack_from():_parser static _PyArg_Parser _parser 956Modules/clinic/_struct.c.h:unpack_from():_parser static _PyArg_Parser _parser 957Modules/clinic/_winapi.c.h:_winapi_ConnectNamedPipe():_parser static _PyArg_Parser _parser 958Modules/clinic/_winapi.c.h:_winapi_GetFileType():_parser static _PyArg_Parser _parser 959Modules/clinic/_winapi.c.h:_winapi_ReadFile():_parser static _PyArg_Parser _parser 960Modules/clinic/_winapi.c.h:_winapi_WriteFile():_parser static _PyArg_Parser _parser 961Modules/clinic/binascii.c.h:binascii_a2b_qp():_parser static _PyArg_Parser _parser 962Modules/clinic/binascii.c.h:binascii_b2a_base64():_parser static _PyArg_Parser _parser 963Modules/clinic/binascii.c.h:binascii_b2a_hex():_parser static _PyArg_Parser _parser 964Modules/clinic/binascii.c.h:binascii_b2a_qp():_parser static _PyArg_Parser _parser 965Modules/clinic/binascii.c.h:binascii_b2a_uu():_parser static _PyArg_Parser _parser 966Modules/clinic/binascii.c.h:binascii_hexlify():_parser static _PyArg_Parser _parser 967Modules/clinic/cmathmodule.c.h:cmath_isclose():_parser static _PyArg_Parser _parser 968Modules/clinic/gcmodule.c.h:gc_collect():_parser static _PyArg_Parser _parser 969Modules/clinic/gcmodule.c.h:gc_get_objects():_parser static _PyArg_Parser _parser 970Modules/clinic/grpmodule.c.h:grp_getgrgid():_parser static _PyArg_Parser _parser 971Modules/clinic/grpmodule.c.h:grp_getgrnam():_parser static _PyArg_Parser _parser 972Objects/clinic/bytearrayobject.c.h:bytearray_decode():_parser static _PyArg_Parser _parser 973Objects/clinic/bytearrayobject.c.h:bytearray_hex():_parser static _PyArg_Parser _parser 974Objects/clinic/bytearrayobject.c.h:bytearray_rsplit():_parser static _PyArg_Parser _parser 975Objects/clinic/bytearrayobject.c.h:bytearray_split():_parser static _PyArg_Parser _parser 976Objects/clinic/bytearrayobject.c.h:bytearray_splitlines():_parser static _PyArg_Parser _parser 977Objects/clinic/bytearrayobject.c.h:bytearray_translate():_parser static _PyArg_Parser _parser 978Objects/clinic/bytesobject.c.h:bytes_decode():_parser static _PyArg_Parser _parser 979Objects/clinic/bytesobject.c.h:bytes_hex():_parser static _PyArg_Parser _parser 980Objects/clinic/bytesobject.c.h:bytes_rsplit():_parser static _PyArg_Parser _parser 981Objects/clinic/bytesobject.c.h:bytes_split():_parser static _PyArg_Parser _parser 982Objects/clinic/bytesobject.c.h:bytes_splitlines():_parser static _PyArg_Parser _parser 983Objects/clinic/bytesobject.c.h:bytes_translate():_parser static _PyArg_Parser _parser 984Objects/clinic/codeobject.c.h:code_replace():_parser static _PyArg_Parser _parser 985Objects/clinic/complexobject.c.h:complex_new():_parser static _PyArg_Parser _parser 986Objects/clinic/descrobject.c.h:mappingproxy_new():_parser static _PyArg_Parser _parser 987Objects/clinic/descrobject.c.h:property_init():_parser static _PyArg_Parser _parser 988Objects/clinic/enumobject.c.h:enum_new():_parser static _PyArg_Parser _parser 989Objects/clinic/funcobject.c.h:func_new():_parser static _PyArg_Parser _parser 990Objects/clinic/listobject.c.h:list_sort():_parser static _PyArg_Parser _parser 991Objects/clinic/longobject.c.h:int_from_bytes():_parser static _PyArg_Parser _parser 992Objects/clinic/longobject.c.h:int_to_bytes():_parser static _PyArg_Parser _parser 993Objects/clinic/longobject.c.h:long_new():_parser static _PyArg_Parser _parser 994Objects/clinic/memoryobject.c.h:memoryview_hex():_parser static _PyArg_Parser _parser 995Objects/clinic/moduleobject.c.h:module___init__():_parser static _PyArg_Parser _parser 996Objects/clinic/odictobject.c.h:OrderedDict_fromkeys():_parser static _PyArg_Parser _parser 997Objects/clinic/odictobject.c.h:OrderedDict_move_to_end():_parser static _PyArg_Parser _parser 998Objects/clinic/odictobject.c.h:OrderedDict_popitem():_parser static _PyArg_Parser _parser 999Objects/clinic/odictobject.c.h:OrderedDict_setdefault():_parser static _PyArg_Parser _parser 1000Objects/clinic/structseq.c.h:structseq_new():_parser static _PyArg_Parser _parser 1001Objects/clinic/unicodeobject.c.h:unicode_encode():_parser static _PyArg_Parser _parser 1002Objects/clinic/unicodeobject.c.h:unicode_expandtabs():_parser static _PyArg_Parser _parser 1003Objects/clinic/unicodeobject.c.h:unicode_rsplit():_parser static _PyArg_Parser _parser 1004Objects/clinic/unicodeobject.c.h:unicode_split():_parser static _PyArg_Parser _parser 1005Objects/clinic/unicodeobject.c.h:unicode_splitlines():_parser static _PyArg_Parser _parser 1006Objects/stringlib/clinic/transmogrify.h.h:stringlib_expandtabs():_parser static _PyArg_Parser _parser 1007Python/bltinmodule.c:builtin_print():_parser static struct _PyArg_Parser _parser 1008Python/clinic/_warnings.c.h:warnings_warn():_parser static _PyArg_Parser _parser 1009Python/clinic/bltinmodule.c.h:builtin_compile():_parser static _PyArg_Parser _parser 1010Python/clinic/bltinmodule.c.h:builtin_round():_parser static _PyArg_Parser _parser 1011Python/clinic/bltinmodule.c.h:builtin_sum():_parser static _PyArg_Parser _parser 1012Python/clinic/import.c.h:_imp_source_hash():_parser static _PyArg_Parser _parser 1013Python/clinic/sysmodule.c.h:sys_addaudithook():_parser static _PyArg_Parser _parser 1014Python/clinic/sysmodule.c.h:sys_set_coroutine_origin_tracking_depth():_parser static _PyArg_Parser _parser 1015Python/clinic/traceback.c.h:tb_new():_parser static _PyArg_Parser _parser 1016