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