mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 22:25:43 +00:00
31 KiB
31 KiB
| 1 | filename | funcname | name | reason |
|---|---|---|---|---|
| 2 | #??? | - | somevar | ??? |
| 3 | # All globals here are technically mutable but known to be safe. | |||
| 4 | ################################## | |||
| 5 | ## process-global values - set once | |||
| 6 | # These will never re-initialize (but would be idempotent). | |||
| 7 | # These are effectively const. | |||
| 8 | ##----------------------- | |||
| 9 | ## process-global resources | |||
| 10 | ## indicators for resource availability/capability | |||
| 11 | # (set during first init) | |||
| 12 | Python/bootstrap_hash.c | py_getrandom | getrandom_works | - |
| 13 | Python/fileutils.c | - | _Py_open_cloexec_works | - |
| 14 | Python/fileutils.c | set_inheritable | ioctl_works | - |
| 15 | # (set lazily, *after* first init) | |||
| 16 | # XXX Is this thread-safe? | |||
| 17 | Modules/posixmodule.c | os_dup2_impl | dup3_works | - |
| 18 | ## guards around resource init | |||
| 19 | Python/thread_pthread.h | PyThread__init_thread | lib_initialized | - |
| 20 | ##----------------------- | |||
| 21 | ## other values (not Python-specific) | |||
| 22 | # static tables computed by external script | |||
| 23 | Objects/longobject.c | - | log_base_BASE | - |
| 24 | Objects/longobject.c | - | convwidth_base | - |
| 25 | Objects/longobject.c | - | convmultmax_base | - |
| 26 | ## cached computed data - set lazily (*after* first init) | |||
| 27 | # XXX Are these safe relative to write races? | |||
| 28 | Objects/unicodeobject.c | - | bloom_linebreak | - |
| 29 | # This is safe: | |||
| 30 | Objects/unicodeobject.c | _init_global_state | initialized | - |
| 31 | ##----------------------- | |||
| 32 | ## other values (Python-specific) | |||
| 33 | ## internal state - set before/during first init | |||
| 34 | Modules/getbuildinfo.c | - | buildinfo | - |
| 35 | Modules/getbuildinfo.c | - | initialized | - |
| 36 | Python/getversion.c | - | initialized | - |
| 37 | Python/getversion.c | - | version | - |
| 38 | ## public C-API - set during first init | |||
| 39 | Python/bootstrap_hash.c | - | _Py_HashSecret_Initialized | - |
| 40 | Python/pyhash.c | - | _Py_HashSecret | - |
| 41 | ## thread-safe hashtable (internal locks) | |||
| 42 | Python/parking_lot.c | - | buckets | - |
| 43 | ## data needed for introspecting asyncio state from debuggers and profilers | |||
| 44 | Modules/_asynciomodule.c | - | _AsyncioDebug | - |
| 45 | ################################## | |||
| 46 | ## state tied to Py_Main() | |||
| 47 | # (only in main thread) | |||
| 48 | ##----------------------- | |||
| 49 | ## handling C argv | |||
| 50 | Python/getopt.c | - | _PyOS_optarg | - |
| 51 | Python/getopt.c | - | _PyOS_opterr | - |
| 52 | Python/getopt.c | - | _PyOS_optind | - |
| 53 | Python/getopt.c | - | opt_ptr | - |
| 54 | Python/pathconfig.c | - | _Py_path_config | - |
| 55 | ##----------------------- | |||
| 56 | ## REPL | |||
| 57 | Parser/myreadline.c | - | _PyOS_ReadlineLock | - |
| 58 | Parser/myreadline.c | - | _PyOS_ReadlineTState | - |
| 59 | Parser/myreadline.c | - | PyOS_InputHook | - |
| 60 | Parser/myreadline.c | - | PyOS_ReadlineFunctionPointer | - |
| 61 | ################################## | |||
| 62 | ## runtime-global values - set once with each init | |||
| 63 | # These are effectively const. | |||
| 64 | ##----------------------- | |||
| 65 | ## set by embedders before init | |||
| 66 | # (whether directly or through a call) | |||
| 67 | Python/initconfig.c | - | _Py_StandardStreamEncoding | - |
| 68 | Python/initconfig.c | - | _Py_StandardStreamErrors | - |
| 69 | # Internal constant list | |||
| 70 | Python/initconfig.c | - | PYCONFIG_SPEC | - |
| 71 | Python/initconfig.c | - | PYPRECONFIG_SPEC | - |
| 72 | ##----------------------- | |||
| 73 | ## public C-API | |||
| 74 | ## deprecated | |||
| 75 | Python/preconfig.c | - | Py_FileSystemDefaultEncoding | - |
| 76 | Python/preconfig.c | - | Py_HasFileSystemDefaultEncoding | - |
| 77 | Python/preconfig.c | - | Py_FileSystemDefaultEncodeErrors | - |
| 78 | Python/preconfig.c | - | _Py_HasFileSystemDefaultEncodeErrors | - |
| 79 | ## legacy config flags | |||
| 80 | Python/initconfig.c | - | Py_UTF8Mode | - |
| 81 | Python/initconfig.c | - | Py_DebugFlag | - |
| 82 | Python/initconfig.c | - | Py_VerboseFlag | - |
| 83 | Python/initconfig.c | - | Py_QuietFlag | - |
| 84 | Python/initconfig.c | - | Py_InteractiveFlag | - |
| 85 | Python/initconfig.c | - | Py_InspectFlag | - |
| 86 | Python/initconfig.c | - | Py_OptimizeFlag | - |
| 87 | Python/initconfig.c | - | Py_NoSiteFlag | - |
| 88 | Python/initconfig.c | - | Py_BytesWarningFlag | - |
| 89 | Python/initconfig.c | - | Py_FrozenFlag | - |
| 90 | Python/initconfig.c | - | Py_IgnoreEnvironmentFlag | - |
| 91 | Python/initconfig.c | - | Py_DontWriteBytecodeFlag | - |
| 92 | Python/initconfig.c | - | Py_NoUserSiteDirectory | - |
| 93 | Python/initconfig.c | - | Py_UnbufferedStdioFlag | - |
| 94 | Python/initconfig.c | - | Py_HashRandomizationFlag | - |
| 95 | Python/initconfig.c | - | Py_IsolatedFlag | - |
| 96 | Python/initconfig.c | - | Py_LegacyWindowsFSEncodingFlag | - |
| 97 | Python/initconfig.c | - | Py_LegacyWindowsStdioFlag | - |
| 98 | ##----------------------- | |||
| 99 | ## initialized statically, may be customized by embedders | |||
| 100 | Python/frozen.c | - | PyImport_FrozenModules | - |
| 101 | Python/import.c | - | inittab_copy | - |
| 102 | Python/import.c | - | PyImport_Inittab | - |
| 103 | ################################## | |||
| 104 | ## runtime-global state | |||
| 105 | ##----------------------- | |||
| 106 | ## tied to each init/fini cycle | |||
| 107 | ## the consolidated runtime state | |||
| 108 | Python/pylifecycle.c | - | _PyRuntime | - |
| 109 | Python/pylifecycle.c | - | runtime_initialized | - |
| 110 | # All cases of _PyArg_Parser are handled in c-analyzr/cpython/_analyzer.py. | |||
| 111 | ## main interp state in stdlib modules | |||
| 112 | Modules/syslogmodule.c | - | S_ident_o | - |
| 113 | Modules/syslogmodule.c | - | S_log_open | - |
| 114 | ##----------------------- | |||
| 115 | ## kept for stable ABI compatibility | |||
| 116 | Objects/object.c | - | _Py_RefTotal | - |
| 117 | ##----------------------- | |||
| 118 | ## one-off temporary state | |||
| 119 | # used during runtime init | |||
| 120 | Python/sysmodule.c | - | _preinit_warnoptions | - |
| 121 | Python/sysmodule.c | - | _preinit_xoptions | - |
| 122 | # thread-safety | |||
| 123 | # XXX need race protection? | |||
| 124 | Modules/faulthandler.c | faulthandler_dump_traceback | reentrant | - |
| 125 | Modules/faulthandler.c | faulthandler_dump_c_stack | reentrant | - |
| 126 | Modules/grpmodule.c | - | group_db_mutex | - |
| 127 | Python/pylifecycle.c | _Py_FatalErrorFormat | reentrant | - |
| 128 | Python/pylifecycle.c | fatal_error | reentrant | - |
| 129 | # explicitly protected, internal-only | |||
| 130 | Modules/_interpchannelsmodule.c | - | _globals | - |
| 131 | Modules/_interpqueuesmodule.c | - | _globals | - |
| 132 | # set once during module init | |||
| 133 | Modules/_decimal/_decimal.c | - | minalloc_is_set | - |
| 134 | ################################## | |||
| 135 | ## not significant | |||
| 136 | ##----------------------- | |||
| 137 | ## not used (kept for compatibility) | |||
| 138 | Python/pyfpe.c | - | PyFPE_counter | - |
| 139 | ##----------------------- | |||
| 140 | ## thread-local variables | |||
| 141 | Python/import.c | - | pkgcontext | - |
| 142 | Python/pystate.c | - | _Py_tss_tstate | - |
| 143 | ##----------------------- | |||
| 144 | ## should be const | |||
| 145 | # XXX Make them const. | |||
| 146 | # These are all variables that we will be leaving global. | |||
| 147 | # All module defs, type defs, etc. are handled in c-analyzr/cpython/_analyzer.py. | |||
| 148 | # All kwlist arrays are handled in c-analyzr/cpython/_analyzer.py. | |||
| 149 | # other vars that are actually constant | |||
| 150 | Include/internal/pycore_blocks_output_buffer.h | - | BUFFER_BLOCK_SIZE | - |
| 151 | Modules/_csv.c | - | quote_styles | - |
| 152 | Modules/_ctypes/_ctypes.c | - | _ctypesmodule | - |
| 153 | Modules/_ctypes/cfield.c | - | ffi_type_double | - |
| 154 | Modules/_ctypes/cfield.c | - | ffi_type_float | - |
| 155 | Modules/_ctypes/cfield.c | - | ffi_type_longdouble | - |
| 156 | Modules/_ctypes/cfield.c | - | ffi_type_pointer | - |
| 157 | Modules/_ctypes/cfield.c | - | ffi_type_sint16 | - |
| 158 | Modules/_ctypes/cfield.c | - | ffi_type_sint32 | - |
| 159 | Modules/_ctypes/cfield.c | - | ffi_type_sint64 | - |
| 160 | Modules/_ctypes/cfield.c | - | ffi_type_sint8 | - |
| 161 | Modules/_ctypes/cfield.c | - | ffi_type_uint16 | - |
| 162 | Modules/_ctypes/cfield.c | - | ffi_type_uint32 | - |
| 163 | Modules/_ctypes/cfield.c | - | ffi_type_uint64 | - |
| 164 | Modules/_ctypes/cfield.c | - | ffi_type_uint8 | - |
| 165 | Modules/_ctypes/cfield.c | - | ffi_type_void | - |
| 166 | Modules/_datetimemodule.c | - | epoch | - |
| 167 | Modules/_datetimemodule.c | - | max_fold_seconds | - |
| 168 | Modules/_datetimemodule.c | datetime_isoformat | specs | - |
| 169 | Modules/_datetimemodule.c | parse_hh_mm_ss_ff | correction | - |
| 170 | Modules/_datetimemodule.c | time_isoformat | specs | - |
| 171 | Modules/_datetimemodule.c | - | capi_types | - |
| 172 | Modules/_decimal/_decimal.c | - | cond_map_template | - |
| 173 | Modules/_decimal/_decimal.c | - | dec_signal_string | - |
| 174 | Modules/_decimal/_decimal.c | - | dflt_ctx | - |
| 175 | Modules/_decimal/_decimal.c | - | int_constants | - |
| 176 | Modules/_decimal/_decimal.c | - | invalid_rounding_err | - |
| 177 | Modules/_decimal/_decimal.c | - | invalid_signals_err | - |
| 178 | Modules/_decimal/_decimal.c | - | signal_map_template | - |
| 179 | Modules/_decimal/_decimal.c | - | ssize_constants | - |
| 180 | Modules/_decimal/_decimal.c | - | INVALID_SIGNALDICT_ERROR_MSG | - |
| 181 | Modules/_elementtree.c | - | ExpatMemoryHandler | - |
| 182 | Modules/_hashopenssl.c | - | py_hashes | - |
| 183 | Modules/_hacl/Hacl_Hash_SHA1.c | - | _h0 | - |
| 184 | Modules/_hacl/Hacl_Hash_MD5.c | - | _h0 | - |
| 185 | Modules/_hacl/Hacl_Hash_MD5.c | - | _t | - |
| 186 | Modules/_io/_iomodule.c | - | static_types | - |
| 187 | Modules/_io/textio.c | - | encodefuncs | - |
| 188 | Modules/_io/winconsoleio.c | - | _PyWindowsConsoleIO_Type | - |
| 189 | Modules/_localemodule.c | - | langinfo_constants | - |
| 190 | Modules/_lsprof.c | - | callback_table | - |
| 191 | Modules/_pickle.c | - | READ_WHOLE_LINE | - |
| 192 | Modules/_sqlite/module.c | - | error_codes | - |
| 193 | Modules/_sre/sre.c | pattern_repr | flag_names | - |
| 194 | # XXX I'm pretty sure this is actually constant: | |||
| 195 | Modules/_sre/sre_targets.h | - | sre_targets | - |
| 196 | Modules/_sre.c | pattern_repr | flag_names | - |
| 197 | Modules/_struct.c | - | bigendian_table | - |
| 198 | Modules/_struct.c | - | lilendian_table | - |
| 199 | Modules/_struct.c | - | native_table | - |
| 200 | Modules/_tkinter.c | - | state_key | - |
| 201 | Modules/_interpchannelsmodule.c | - | _channelid_end_recv | - |
| 202 | Modules/_interpchannelsmodule.c | - | _channelid_end_send | - |
| 203 | Modules/_zoneinfo.c | - | DAYS_BEFORE_MONTH | - |
| 204 | Modules/_zoneinfo.c | - | DAYS_IN_MONTH | - |
| 205 | Modules/_interpretersmodule.c | - | no_exception | - |
| 206 | Modules/arraymodule.c | - | descriptors | - |
| 207 | Modules/arraymodule.c | - | emptybuf | - |
| 208 | Modules/cjkcodecs/_codecs_cn.c | - | _mapping_list | - |
| 209 | Modules/cjkcodecs/_codecs_cn.c | - | mapping_list | - |
| 210 | Modules/cjkcodecs/_codecs_cn.c | - | _codec_list | - |
| 211 | Modules/cjkcodecs/_codecs_cn.c | - | codec_list | - |
| 212 | Modules/cjkcodecs/_codecs_hk.c | - | big5hkscs_pairenc_table | - |
| 213 | Modules/cjkcodecs/_codecs_hk.c | - | _mapping_list | - |
| 214 | Modules/cjkcodecs/_codecs_hk.c | - | mapping_list | - |
| 215 | Modules/cjkcodecs/_codecs_hk.c | - | _codec_list | - |
| 216 | Modules/cjkcodecs/_codecs_hk.c | - | codec_list | - |
| 217 | Modules/cjkcodecs/_codecs_iso2022.c | - | iso2022_kr_config | - |
| 218 | Modules/cjkcodecs/_codecs_iso2022.c | - | iso2022_jp_config | - |
| 219 | Modules/cjkcodecs/_codecs_iso2022.c | - | iso2022_jp_1_config | - |
| 220 | Modules/cjkcodecs/_codecs_iso2022.c | - | iso2022_jp_2_config | - |
| 221 | Modules/cjkcodecs/_codecs_iso2022.c | - | iso2022_jp_2004_config | - |
| 222 | Modules/cjkcodecs/_codecs_iso2022.c | - | iso2022_jp_3_config | - |
| 223 | Modules/cjkcodecs/_codecs_iso2022.c | - | iso2022_jp_ext_config | - |
| 224 | Modules/cjkcodecs/_codecs_iso2022.c | - | _mapping_list | - |
| 225 | Modules/cjkcodecs/_codecs_iso2022.c | - | mapping_list | - |
| 226 | Modules/cjkcodecs/_codecs_iso2022.c | - | _codec_list | - |
| 227 | Modules/cjkcodecs/_codecs_iso2022.c | - | codec_list | - |
| 228 | Modules/cjkcodecs/_codecs_jp.c | - | _mapping_list | - |
| 229 | Modules/cjkcodecs/_codecs_jp.c | - | mapping_list | - |
| 230 | Modules/cjkcodecs/_codecs_jp.c | - | _codec_list | - |
| 231 | Modules/cjkcodecs/_codecs_jp.c | - | codec_list | - |
| 232 | Modules/cjkcodecs/_codecs_kr.c | - | u2johabjamo | - |
| 233 | Modules/cjkcodecs/_codecs_kr.c | - | _mapping_list | - |
| 234 | Modules/cjkcodecs/_codecs_kr.c | - | mapping_list | - |
| 235 | Modules/cjkcodecs/_codecs_kr.c | - | _codec_list | - |
| 236 | Modules/cjkcodecs/_codecs_kr.c | - | codec_list | - |
| 237 | Modules/cjkcodecs/_codecs_tw.c | - | _mapping_list | - |
| 238 | Modules/cjkcodecs/_codecs_tw.c | - | mapping_list | - |
| 239 | Modules/cjkcodecs/_codecs_tw.c | - | _codec_list | - |
| 240 | Modules/cjkcodecs/_codecs_tw.c | - | codec_list | - |
| 241 | Modules/cjkcodecs/cjkcodecs.h | - | __methods | - |
| 242 | Modules/cmathmodule.c | - | acos_special_values | - |
| 243 | Modules/cmathmodule.c | - | acosh_special_values | - |
| 244 | Modules/cmathmodule.c | - | asinh_special_values | - |
| 245 | Modules/cmathmodule.c | - | atanh_special_values | - |
| 246 | Modules/cmathmodule.c | - | cosh_special_values | - |
| 247 | Modules/cmathmodule.c | - | exp_special_values | - |
| 248 | Modules/cmathmodule.c | - | log_special_values | - |
| 249 | Modules/cmathmodule.c | - | rect_special_values | - |
| 250 | Modules/cmathmodule.c | - | sinh_special_values | - |
| 251 | Modules/cmathmodule.c | - | sqrt_special_values | - |
| 252 | Modules/cmathmodule.c | - | tanh_special_values | - |
| 253 | Modules/config.c | - | _PyImport_Inittab | - |
| 254 | Modules/faulthandler.c | - | faulthandler_handlers | - |
| 255 | Modules/getnameinfo.c | - | gni_afdl | - |
| 256 | Modules/hmacmodule.c | - | py_hmac_static_hinfo | - |
| 257 | Modules/posixmodule.c | os_getxattr_impl | buffer_sizes | - |
| 258 | Modules/posixmodule.c | os_listxattr_impl | buffer_sizes | - |
| 259 | Modules/posixmodule.c | - | posix_constants_confstr | - |
| 260 | Modules/posixmodule.c | - | posix_constants_pathconf | - |
| 261 | Modules/posixmodule.c | - | posix_constants_sysconf | - |
| 262 | Modules/pyexpat.c | - | ExpatMemoryHandler | - |
| 263 | Modules/pyexpat.c | - | error_info_of | - |
| 264 | Modules/pyexpat.c | - | handler_info | - |
| 265 | Modules/termios.c | - | termios_constants | - |
| 266 | Modules/timemodule.c | init_timezone | YEAR | - |
| 267 | Objects/bytearrayobject.c | - | _PyByteArray_empty_string | - |
| 268 | Objects/complexobject.c | - | c_1 | - |
| 269 | Objects/exceptions.c | - | static_exceptions | - |
| 270 | Objects/genobject.c | - | ASYNC_GEN_IGNORED_EXIT_MSG | - |
| 271 | Objects/genobject.c | - | NON_INIT_CORO_MSG | - |
| 272 | Objects/longobject.c | - | _PyLong_DigitValue | - |
| 273 | Objects/longobject.c | - | PyLong_LAYOUT | - |
| 274 | Objects/object.c | - | _Py_SwappedOp | - |
| 275 | Objects/object.c | - | _Py_abstract_hack | - |
| 276 | Objects/object.c | - | last_final_reftotal | - |
| 277 | Objects/object.c | - | static_types | - |
| 278 | Objects/obmalloc.c | - | _PyMem | - |
| 279 | Objects/obmalloc.c | - | _PyMem_Debug | - |
| 280 | Objects/obmalloc.c | - | _PyMem_Raw | - |
| 281 | Objects/obmalloc.c | - | _PyObject | - |
| 282 | Objects/obmalloc.c | - | last_final_leaks | - |
| 283 | Objects/obmalloc.c | - | obmalloc_state_main | - |
| 284 | Objects/obmalloc.c | - | obmalloc_state_initialized | - |
| 285 | Objects/typeobject.c | - | name_op | - |
| 286 | Objects/typeobject.c | - | slotdefs | - |
| 287 | Objects/unicodeobject.c | - | stripfuncnames | - |
| 288 | Objects/unicodeobject.c | - | utf7_category | - |
| 289 | Objects/unicodeobject.c | unicode_decode_call_errorhandler_wchar | argparse | - |
| 290 | Objects/unicodeobject.c | unicode_decode_call_errorhandler_writer | argparse | - |
| 291 | Objects/unicodeobject.c | unicode_encode_call_errorhandler | argparse | - |
| 292 | Objects/unicodeobject.c | unicode_translate_call_errorhandler | argparse | - |
| 293 | Parser/parser.c | - | reserved_keywords | - |
| 294 | Parser/parser.c | - | soft_keywords | - |
| 295 | Parser/lexer/lexer.c | - | type_comment_prefix | - |
| 296 | Python/ceval.c | - | _PyEval_BinaryOps | - |
| 297 | Python/ceval.c | - | _Py_INTERPRETER_TRAMPOLINE_INSTRUCTIONS | - |
| 298 | Python/codecs.c | - | Py_hexdigits | - |
| 299 | Python/codecs.c | - | codecs_builtin_error_handlers | - |
| 300 | Python/codecs.c | - | ucnhash_capi | - |
| 301 | Python/codecs.c | _PyCodec_InitRegistry | methods | - |
| 302 | Python/compile.c | - | NO_LOCATION | - |
| 303 | Python/dynload_shlib.c | - | _PyImport_DynLoadFiletab | - |
| 304 | Python/dynload_stub.c | - | _PyImport_DynLoadFiletab | - |
| 305 | Python/frozen.c | - | aliases | - |
| 306 | Python/frozen.c | - | bootstrap_modules | - |
| 307 | Python/frozen.c | - | stdlib_modules | - |
| 308 | Python/frozen.c | - | test_modules | - |
| 309 | Python/frozen.c | - | _PyImport_FrozenAliases | - |
| 310 | Python/frozen.c | - | _PyImport_FrozenBootstrap | - |
| 311 | Python/frozen.c | - | _PyImport_FrozenStdlib | - |
| 312 | Python/frozen.c | - | _PyImport_FrozenTest | - |
| 313 | Python/getopt.c | - | longopts | - |
| 314 | Python/import.c | - | _PyImport_Inittab | - |
| 315 | Python/import.c | - | _PySys_ImplCacheTag | - |
| 316 | Python/intrinsics.c | - | _PyIntrinsics_UnaryFunctions | - |
| 317 | Python/intrinsics.c | - | _PyIntrinsics_BinaryFunctions | - |
| 318 | Python/lock.c | - | TIME_TO_BE_FAIR_NS | - |
| 319 | Python/opcode_targets.h | - | opcode_targets | - |
| 320 | Python/perf_trampoline.c | - | _Py_perfmap_callbacks | - |
| 321 | Python/perf_jit_trampoline.c | - | _Py_perfmap_jit_callbacks | - |
| 322 | Python/perf_jit_trampoline.c | - | perf_jit_map_state | - |
| 323 | Python/pyhash.c | - | PyHash_Func | - |
| 324 | Python/pylifecycle.c | - | _C_LOCALE_WARNING | - |
| 325 | Python/pylifecycle.c | - | _PyOS_mystrnicmp_hack | - |
| 326 | Python/pylifecycle.c | - | _TARGET_LOCALES | - |
| 327 | Python/pylifecycle.c | - | INTERPRETER_TRAMPOLINE_CODEDEF | - |
| 328 | Python/pystate.c | - | initial | - |
| 329 | Python/specialize.c | - | adaptive_opcodes | - |
| 330 | Python/specialize.c | - | cache_requirements | - |
| 331 | Python/specialize.c | - | binaryop_extend_descrs | - |
| 332 | Python/stdlib_module_names.h | - | _Py_stdlib_module_names | - |
| 333 | Python/sysmodule.c | - | perf_map_state | - |
| 334 | Python/sysmodule.c | - | _PySys_ImplCacheTag | - |
| 335 | Python/sysmodule.c | - | _PySys_ImplName | - |
| 336 | Python/sysmodule.c | - | whatstrings | - |
| 337 | Python/optimizer.c | - | _PyUOpExecutor_Type | - |
| 338 | Python/optimizer.c | - | _PyOptimizer_Default | - |
| 339 | Python/optimizer.c | - | _ColdExit_Type | - |
| 340 | Python/optimizer.c | - | Py_FatalErrorExecutor | - |
| 341 | Python/optimizer.c | - | EMPTY_FILTER | - |
| 342 | ##----------------------- | |||
| 343 | ## test code | |||
| 344 | Modules/_ctypes/_ctypes_test.c | - | _xxx_lib | - |
| 345 | Modules/_ctypes/_ctypes_test.c | - | an_integer | - |
| 346 | Modules/_ctypes/_ctypes_test.c | - | bottom | - |
| 347 | Modules/_ctypes/_ctypes_test.c | - | last_tf_arg_s | - |
| 348 | Modules/_ctypes/_ctypes_test.c | - | last_tf_arg_u | - |
| 349 | Modules/_ctypes/_ctypes_test.c | - | last_tfrsuv_arg | - |
| 350 | Modules/_ctypes/_ctypes_test.c | - | left | - |
| 351 | Modules/_ctypes/_ctypes_test.c | - | my_eggs | - |
| 352 | Modules/_ctypes/_ctypes_test.c | - | my_spams | - |
| 353 | Modules/_ctypes/_ctypes_test.c | - | right | - |
| 354 | Modules/_ctypes/_ctypes_test.c | - | top | - |
| 355 | Modules/_testbuffer.c | - | NDArray_Type | - |
| 356 | Modules/_testbuffer.c | - | StaticArray_Type | - |
| 357 | Modules/_testbuffer.c | - | Struct | - |
| 358 | Modules/_testbuffer.c | - | _testbuffer_functions | - |
| 359 | Modules/_testbuffer.c | - | _testbuffermodule | - |
| 360 | Modules/_testbuffer.c | - | calcsize | - |
| 361 | Modules/_testbuffer.c | - | infobuf | - |
| 362 | Modules/_testbuffer.c | - | ndarray_as_buffer | - |
| 363 | Modules/_testbuffer.c | - | ndarray_as_mapping | - |
| 364 | Modules/_testbuffer.c | - | ndarray_as_sequence | - |
| 365 | Modules/_testbuffer.c | - | ndarray_getset | - |
| 366 | Modules/_testbuffer.c | - | ndarray_methods | - |
| 367 | Modules/_testbuffer.c | - | simple_fmt | - |
| 368 | Modules/_testbuffer.c | - | simple_format | - |
| 369 | Modules/_testbuffer.c | - | static_buffer | - |
| 370 | Modules/_testbuffer.c | - | static_mem | - |
| 371 | Modules/_testbuffer.c | - | static_shape | - |
| 372 | Modules/_testbuffer.c | - | static_strides | - |
| 373 | Modules/_testbuffer.c | - | staticarray_as_buffer | - |
| 374 | Modules/_testbuffer.c | - | structmodule | - |
| 375 | Modules/_testbuffer.c | ndarray_init | kwlist | - |
| 376 | Modules/_testbuffer.c | ndarray_memoryview_from_buffer | format | - |
| 377 | Modules/_testbuffer.c | ndarray_memoryview_from_buffer | info | - |
| 378 | Modules/_testbuffer.c | ndarray_memoryview_from_buffer | shape | - |
| 379 | Modules/_testbuffer.c | ndarray_memoryview_from_buffer | strides | - |
| 380 | Modules/_testbuffer.c | ndarray_memoryview_from_buffer | suboffsets | - |
| 381 | Modules/_testbuffer.c | ndarray_push | kwlist | - |
| 382 | Modules/_testbuffer.c | staticarray_init | kwlist | - |
| 383 | Modules/_testcapi/buffer.c | - | testBufType | - |
| 384 | Modules/_testcapi/code.c | get_code_extra_index | key | - |
| 385 | Modules/_testcapi/datetime.c | - | test_run_counter | - |
| 386 | Modules/_testcapi/docstring.c | - | DocStringNoSignatureTest | - |
| 387 | Modules/_testcapi/docstring.c | - | DocStringUnrepresentableSignatureTest | - |
| 388 | Modules/_testcapi/exceptions.c | - | PyRecursingInfinitelyError_Type | - |
| 389 | Modules/_testcapi/heaptype.c | - | _testcapimodule | - |
| 390 | Modules/_testcapi/mem.c | - | FmData | - |
| 391 | Modules/_testcapi/mem.c | - | FmHook | - |
| 392 | Modules/_testcapi/object.c | - | MyObject_dealloc_called | - |
| 393 | Modules/_testcapi/object.c | - | MyType | - |
| 394 | Modules/_testcapi/structmember.c | - | test_structmembersType_OldAPI | - |
| 395 | Modules/_testcapi/watchers.c | - | g_dict_watch_events | - |
| 396 | Modules/_testcapi/watchers.c | - | g_dict_watchers_installed | - |
| 397 | Modules/_testcapi/watchers.c | - | g_type_modified_events | - |
| 398 | Modules/_testcapi/watchers.c | - | g_type_watchers_installed | - |
| 399 | Modules/_testcapi/watchers.c | - | code_watcher_ids | - |
| 400 | Modules/_testcapi/watchers.c | - | num_code_object_created_events | - |
| 401 | Modules/_testcapi/watchers.c | - | num_code_object_destroyed_events | - |
| 402 | Modules/_testcapi/watchers.c | - | pyfunc_watchers | - |
| 403 | Modules/_testcapi/watchers.c | - | func_watcher_ids | - |
| 404 | Modules/_testcapi/watchers.c | - | func_watcher_callbacks | - |
| 405 | Modules/_testcapi/watchers.c | - | context_watcher_ids | - |
| 406 | Modules/_testcapi/watchers.c | - | context_switches | - |
| 407 | Modules/_testcapi/watchers.c | add_context_watcher | callbacks | - |
| 408 | Modules/_testcapimodule.c | - | BasicStaticTypes | - |
| 409 | Modules/_testcapimodule.c | - | num_basic_static_types_used | - |
| 410 | Modules/_testcapimodule.c | - | ContainerNoGC_members | - |
| 411 | Modules/_testcapimodule.c | - | ContainerNoGC_type | - |
| 412 | Modules/_testcapimodule.c | - | FmData | - |
| 413 | Modules/_testcapimodule.c | - | FmHook | - |
| 414 | Modules/_testcapimodule.c | - | GenericAlias_Type | - |
| 415 | Modules/_testcapimodule.c | - | Generic_Type | - |
| 416 | Modules/_testcapimodule.c | - | HeapCTypeSetattr_slots | - |
| 417 | Modules/_testcapimodule.c | - | HeapCTypeSetattr_spec | - |
| 418 | Modules/_testcapimodule.c | - | HeapCTypeSubclassWithFinalizer_slots | - |
| 419 | Modules/_testcapimodule.c | - | HeapCTypeSubclassWithFinalizer_spec | - |
| 420 | Modules/_testcapimodule.c | - | HeapCTypeSubclass_slots | - |
| 421 | Modules/_testcapimodule.c | - | HeapCTypeSubclass_spec | - |
| 422 | Modules/_testcapimodule.c | - | HeapCTypeWithBuffer_slots | - |
| 423 | Modules/_testcapimodule.c | - | HeapCTypeWithBuffer_spec | - |
| 424 | Modules/_testcapimodule.c | - | HeapCTypeWithDict_slots | - |
| 425 | Modules/_testcapimodule.c | - | HeapCTypeWithDict_spec | - |
| 426 | Modules/_testcapimodule.c | - | HeapCTypeWithNegativeDict_slots | - |
| 427 | Modules/_testcapimodule.c | - | HeapCTypeWithNegativeDict_spec | - |
| 428 | Modules/_testcapimodule.c | - | HeapCTypeWithWeakref_slots | - |
| 429 | Modules/_testcapimodule.c | - | HeapCTypeWithWeakref_spec | - |
| 430 | Modules/_testcapimodule.c | - | HeapCType_slots | - |
| 431 | Modules/_testcapimodule.c | - | HeapCType_spec | - |
| 432 | Modules/_testcapimodule.c | - | HeapDocCType_slots | - |
| 433 | Modules/_testcapimodule.c | - | HeapDocCType_spec | - |
| 434 | Modules/_testcapimodule.c | - | HeapGcCType_slots | - |
| 435 | Modules/_testcapimodule.c | - | HeapGcCType_spec | - |
| 436 | Modules/_testcapimodule.c | - | MethClass_Type | - |
| 437 | Modules/_testcapimodule.c | - | MethInstance_Type | - |
| 438 | Modules/_testcapimodule.c | - | MethStatic_Type | - |
| 439 | Modules/_testcapimodule.c | - | MethodDescriptor2_Type | - |
| 440 | Modules/_testcapimodule.c | - | MethodDescriptorBase_Type | - |
| 441 | Modules/_testcapimodule.c | - | MethodDescriptorDerived_Type | - |
| 442 | Modules/_testcapimodule.c | - | MethodDescriptorNopGet_Type | - |
| 443 | Modules/_testcapimodule.c | - | MyList_Type | - |
| 444 | Modules/_testcapimodule.c | - | PyRecursingInfinitelyError_Type | - |
| 445 | Modules/_testcapimodule.c | - | TestError | - |
| 446 | Modules/_testcapimodule.c | - | TestMethods | - |
| 447 | Modules/_testcapimodule.c | - | _HashInheritanceTester_Type | - |
| 448 | Modules/_testcapimodule.c | - | _testcapimodule | - |
| 449 | Modules/_testcapimodule.c | - | awaitType | - |
| 450 | Modules/_testcapimodule.c | - | awaitType_as_async | - |
| 451 | Modules/_testcapimodule.c | - | capsule_context | - |
| 452 | Modules/_testcapimodule.c | - | capsule_destructor_call_count | - |
| 453 | Modules/_testcapimodule.c | - | capsule_error | - |
| 454 | Modules/_testcapimodule.c | - | capsule_name | - |
| 455 | Modules/_testcapimodule.c | - | capsule_pointer | - |
| 456 | Modules/_testcapimodule.c | - | decimal_initialized | - |
| 457 | Modules/_testcapimodule.c | - | generic_alias_methods | - |
| 458 | Modules/_testcapimodule.c | - | generic_methods | - |
| 459 | Modules/_testcapimodule.c | - | heapctype_members | - |
| 460 | Modules/_testcapimodule.c | - | heapctypesetattr_members | - |
| 461 | Modules/_testcapimodule.c | - | heapctypesubclass_members | - |
| 462 | Modules/_testcapimodule.c | - | heapctypewithdict_getsetlist | - |
| 463 | Modules/_testcapimodule.c | - | heapctypewithdict_members | - |
| 464 | Modules/_testcapimodule.c | - | heapctypewithnegativedict_members | - |
| 465 | Modules/_testcapimodule.c | - | heapctypewithweakref_members | - |
| 466 | Modules/_testcapimodule.c | - | ipowType | - |
| 467 | Modules/_testcapimodule.c | - | ipowType_as_number | - |
| 468 | Modules/_testcapimodule.c | - | matmulType | - |
| 469 | Modules/_testcapimodule.c | - | matmulType_as_number | - |
| 470 | Modules/_testcapimodule.c | - | meth_class_methods | - |
| 471 | Modules/_testcapimodule.c | - | meth_instance_methods | - |
| 472 | Modules/_testcapimodule.c | - | meth_static_methods | - |
| 473 | Modules/_testcapimodule.c | - | ml | - |
| 474 | Modules/_testcapimodule.c | - | str1 | - |
| 475 | Modules/_testcapimodule.c | - | str2 | - |
| 476 | Modules/_testcapimodule.c | - | test_c_thread | - |
| 477 | Modules/_testcapimodule.c | - | test_members | - |
| 478 | Modules/_testcapimodule.c | - | test_run_counter | - |
| 479 | Modules/_testcapimodule.c | - | test_structmembersType | - |
| 480 | Modules/_testcapimodule.c | - | thread_done | - |
| 481 | Modules/_testcapimodule.c | - | x | - |
| 482 | Modules/_testcapimodule.c | - | wait_done | - |
| 483 | Modules/_testcapimodule.c | getargs_keyword_only | keywords | - |
| 484 | Modules/_testcapimodule.c | getargs_keywords | keywords | - |
| 485 | Modules/_testcapimodule.c | getargs_positional_only_and_keywords | keywords | - |
| 486 | Modules/_testcapimodule.c | getargs_s_hash_int2 | keywords | static char*[] |
| 487 | Modules/_testcapimodule.c | make_exception_with_doc | kwlist | - |
| 488 | Modules/_testcapimodule.c | raise_SIGINT_then_send_None | PyId_send | - |
| 489 | Modules/_testcapimodule.c | slot_tp_del | PyId___tp_del__ | - |
| 490 | Modules/_testcapimodule.c | test_capsule | buffer | - |
| 491 | Modules/_testcapimodule.c | getargs_empty | kwlist | - |
| 492 | Modules/_testcapimodule.c | test_structmembers_new | keywords | - |
| 493 | Modules/_testcapimodule.c | getargs_s_hash_int | keywords | - |
| 494 | Modules/_testcapimodule.c | - | g_dict_watch_events | - |
| 495 | Modules/_testcapimodule.c | - | g_dict_watchers_installed | - |
| 496 | Modules/_testcapimodule.c | - | g_type_modified_events | - |
| 497 | Modules/_testcapimodule.c | - | g_type_watchers_installed | - |
| 498 | Modules/_testimportmultiple.c | - | _barmodule | - |
| 499 | Modules/_testimportmultiple.c | - | _foomodule | - |
| 500 | Modules/_testimportmultiple.c | - | _testimportmultiple | - |
| 501 | Modules/_testinternalcapi.c | - | pending_identify_result | - |
| 502 | Modules/_testmultiphase.c | - | Example_Type_slots | - |
| 503 | Modules/_testmultiphase.c | - | Example_Type_spec | - |
| 504 | Modules/_testmultiphase.c | - | Example_methods | - |
| 505 | Modules/_testmultiphase.c | - | StateAccessType_Type_slots | - |
| 506 | Modules/_testmultiphase.c | - | StateAccessType_methods | - |
| 507 | Modules/_testmultiphase.c | - | StateAccessType_spec | - |
| 508 | Modules/_testmultiphase.c | - | Str_Type_slots | - |
| 509 | Modules/_testmultiphase.c | - | Str_Type_spec | - |
| 510 | Modules/_testmultiphase.c | - | def_bad_large | - |
| 511 | Modules/_testmultiphase.c | - | def_bad_negative | - |
| 512 | Modules/_testmultiphase.c | - | def_create_int_with_state | - |
| 513 | Modules/_testmultiphase.c | - | def_create_null | - |
| 514 | Modules/_testmultiphase.c | - | def_create_raise | - |
| 515 | Modules/_testmultiphase.c | - | def_create_unreported_exception | - |
| 516 | Modules/_testmultiphase.c | - | def_exec_err | - |
| 517 | Modules/_testmultiphase.c | - | def_exec_raise | - |
| 518 | Modules/_testmultiphase.c | - | def_exec_unreported_exception | - |
| 519 | Modules/_testmultiphase.c | - | def_meth_state_access | - |
| 520 | Modules/_testmultiphase.c | - | def_negative_size | - |
| 521 | Modules/_testmultiphase.c | - | def_nonascii_kana | - |
| 522 | Modules/_testmultiphase.c | - | def_nonascii_latin | - |
| 523 | Modules/_testmultiphase.c | - | def_nonmodule | - |
| 524 | Modules/_testmultiphase.c | - | def_nonmodule_with_exec_slots | - |
| 525 | Modules/_testmultiphase.c | - | def_nonmodule_with_methods | - |
| 526 | Modules/_testmultiphase.c | - | main_def | - |
| 527 | Modules/_testmultiphase.c | - | main_slots | - |
| 528 | Modules/_testmultiphase.c | - | meth_state_access_slots | - |
| 529 | Modules/_testmultiphase.c | - | nonmodule_methods | - |
| 530 | Modules/_testmultiphase.c | - | null_slots_def | - |
| 531 | Modules/_testmultiphase.c | - | slots_bad_large | - |
| 532 | Modules/_testmultiphase.c | - | slots_bad_negative | - |
| 533 | Modules/_testmultiphase.c | - | slots_create_nonmodule | - |
| 534 | Modules/_testmultiphase.c | - | slots_create_nonmodule | - |
| 535 | Modules/_testmultiphase.c | - | slots_create_null | - |
| 536 | Modules/_testmultiphase.c | - | slots_create_raise | - |
| 537 | Modules/_testmultiphase.c | - | slots_create_unreported_exception | - |
| 538 | Modules/_testmultiphase.c | - | slots_exec_err | - |
| 539 | Modules/_testmultiphase.c | - | slots_exec_raise | - |
| 540 | Modules/_testmultiphase.c | - | slots_exec_unreported_exception | - |
| 541 | Modules/_testmultiphase.c | - | slots_nonmodule_with_exec_slots | - |
| 542 | Modules/_testmultiphase.c | - | testexport_methods | - |
| 543 | Modules/_testmultiphase.c | - | uninitialized_def | - |
| 544 | Modules/_testsinglephase.c | - | global_state | - |
| 545 | Modules/_testsinglephase.c | - | static_module_circular | - |
| 546 | Modules/_xxtestfuzz/_xxtestfuzz.c | - | _fuzzmodule | - |
| 547 | Modules/_xxtestfuzz/_xxtestfuzz.c | - | module_methods | - |
| 548 | Modules/_xxtestfuzz/fuzzer.c | - | RE_FLAG_DEBUG | - |
| 549 | Modules/_xxtestfuzz/fuzzer.c | - | ast_literal_eval_method | - |
| 550 | Modules/_xxtestfuzz/fuzzer.c | - | bytesio_type | - |
| 551 | Modules/_xxtestfuzz/fuzzer.c | - | compiled_patterns | - |
| 552 | Modules/_xxtestfuzz/fuzzer.c | - | csv_error | - |
| 553 | Modules/_xxtestfuzz/fuzzer.c | - | csv_module | - |
| 554 | Modules/_xxtestfuzz/fuzzer.c | - | json_loads_method | - |
| 555 | Modules/_xxtestfuzz/fuzzer.c | - | regex_patterns | - |
| 556 | Modules/_xxtestfuzz/fuzzer.c | - | re_compile_method | - |
| 557 | Modules/_xxtestfuzz/fuzzer.c | - | re_error_exception | - |
| 558 | Modules/_xxtestfuzz/fuzzer.c | - | struct_error | - |
| 559 | Modules/_xxtestfuzz/fuzzer.c | - | struct_unpack_method | - |
| 560 | Modules/_xxtestfuzz/fuzzer.c | - | xmlparser_type | - |
| 561 | Modules/_xxtestfuzz/fuzzer.c | - | pycompile_scratch | - |
| 562 | Modules/_xxtestfuzz/fuzzer.c | - | start_vals | - |
| 563 | Modules/_xxtestfuzz/fuzzer.c | - | optimize_vals | - |
| 564 | Modules/_xxtestfuzz/fuzzer.c | LLVMFuzzerTestOneInput | CSV_READER_INITIALIZED | - |
| 565 | Modules/_xxtestfuzz/fuzzer.c | LLVMFuzzerTestOneInput | JSON_LOADS_INITIALIZED | - |
| 566 | Modules/_xxtestfuzz/fuzzer.c | LLVMFuzzerTestOneInput | SRE_COMPILE_INITIALIZED | - |
| 567 | Modules/_xxtestfuzz/fuzzer.c | LLVMFuzzerTestOneInput | SRE_MATCH_INITIALIZED | - |
| 568 | Modules/_xxtestfuzz/fuzzer.c | LLVMFuzzerTestOneInput | STRUCT_UNPACK_INITIALIZED | - |
| 569 | Modules/_xxtestfuzz/fuzzer.c | LLVMFuzzerTestOneInput | AST_LITERAL_EVAL_INITIALIZED | - |
| 570 | Modules/_xxtestfuzz/fuzzer.c | LLVMFuzzerTestOneInput | ELEMENTTREE_PARSEWHOLE_INITIALIZED | - |
| 571 | ##----------------------- | |||
| 572 | ## the analyzer should have ignored these | |||
| 573 | # XXX Fix the analyzer. | |||
| 574 | ## forward/extern references | |||
| 575 | Include/internal/pycore_importdl.h | - | _PyImport_DynLoadFiletab | - |
| 576 | Include/py_curses.h | - | PyCurses_API | - |
| 577 | Include/pydecimal.h | - | _decimal_api | - |
| 578 | Modules/_io/fileio.c | - | _Py_open_cloexec_works | - |
| 579 | Modules/_io/_iomodule.h | - | PyIOBase_Type | - |
| 580 | Modules/_io/_iomodule.h | - | PyRawIOBase_Type | - |
| 581 | Modules/_io/_iomodule.h | - | PyBufferedIOBase_Type | - |
| 582 | Modules/_io/_iomodule.h | - | PyTextIOBase_Type | - |
| 583 | Modules/_io/_iomodule.h | - | PyFileIO_Type | - |
| 584 | Modules/_io/_iomodule.h | - | PyBytesIO_Type | - |
| 585 | Modules/_io/_iomodule.h | - | PyStringIO_Type | - |
| 586 | Modules/_io/_iomodule.h | - | PyBufferedReader_Type | - |
| 587 | Modules/_io/_iomodule.h | - | PyBufferedWriter_Type | - |
| 588 | Modules/_io/_iomodule.h | - | PyBufferedRWPair_Type | - |
| 589 | Modules/_io/_iomodule.h | - | PyBufferedRandom_Type | - |
| 590 | Modules/_io/_iomodule.h | - | PyTextIOWrapper_Type | - |
| 591 | Modules/_io/_iomodule.h | - | PyIncrementalNewlineDecoder_Type | - |
| 592 | Modules/_io/_iomodule.h | - | _PyBytesIOBuffer_Type | - |
| 593 | Modules/_io/_iomodule.h | - | _PyIO_Module | - |
| 594 | Modules/_io/_iomodule.h | - | _PyIO_str_close | - |
| 595 | Modules/_io/_iomodule.h | - | _PyIO_str_closed | - |
| 596 | Modules/_io/_iomodule.h | - | _PyIO_str_decode | - |
| 597 | Modules/_io/_iomodule.h | - | _PyIO_str_encode | - |
| 598 | Modules/_io/_iomodule.h | - | _PyIO_str_fileno | - |
| 599 | Modules/_io/_iomodule.h | - | _PyIO_str_flush | - |
| 600 | Modules/_io/_iomodule.h | - | _PyIO_str_getstate | - |
| 601 | Modules/_io/_iomodule.h | - | _PyIO_str_isatty | - |
| 602 | Modules/_io/_iomodule.h | - | _PyIO_str_newlines | - |
| 603 | Modules/_io/_iomodule.h | - | _PyIO_str_nl | - |
| 604 | Modules/_io/_iomodule.h | - | _PyIO_str_peek | - |
| 605 | Modules/_io/_iomodule.h | - | _PyIO_str_read | - |
| 606 | Modules/_io/_iomodule.h | - | _PyIO_str_read1 | - |
| 607 | Modules/_io/_iomodule.h | - | _PyIO_str_readable | - |
| 608 | Modules/_io/_iomodule.h | - | _PyIO_str_readall | - |
| 609 | Modules/_io/_iomodule.h | - | _PyIO_str_readinto | - |
| 610 | Modules/_io/_iomodule.h | - | _PyIO_str_readline | - |
| 611 | Modules/_io/_iomodule.h | - | _PyIO_str_reset | - |
| 612 | Modules/_io/_iomodule.h | - | _PyIO_str_seek | - |
| 613 | Modules/_io/_iomodule.h | - | _PyIO_str_seekable | - |
| 614 | Modules/_io/_iomodule.h | - | _PyIO_str_setstate | - |
| 615 | Modules/_io/_iomodule.h | - | _PyIO_str_tell | - |
| 616 | Modules/_io/_iomodule.h | - | _PyIO_str_truncate | - |
| 617 | Modules/_io/_iomodule.h | - | _PyIO_str_writable | - |
| 618 | Modules/_io/_iomodule.h | - | _PyIO_str_write | - |
| 619 | Modules/_io/_iomodule.h | - | _PyIO_empty_str | - |
| 620 | Modules/_io/_iomodule.h | - | _PyIO_empty_bytes | - |
| 621 | Modules/_multiprocessing/multiprocessing.h | - | _PyMp_SemLockType | - |
| 622 | Modules/_sqlite/module.c | - | _pysqlite_converters | - |
| 623 | Modules/_sqlite/module.c | - | _pysqlite_enable_callback_tracebacks | - |
| 624 | Modules/_sqlite/module.c | - | pysqlite_BaseTypeAdapted | - |
| 625 | Modules/_sqlite/module.h | - | pysqlite_global_state | - |
| 626 | Modules/_testcapimodule.c | - | _PyBytesIOBuffer_Type | - |
| 627 | Modules/posixmodule.c | - | _Py_open_cloexec_works | - |
| 628 | Modules/posixmodule.c | - | environ | - |
| 629 | Objects/object.c | - | _Py_GenericAliasIterType | - |
| 630 | Objects/object.c | - | _PyMemoryIter_Type | - |
| 631 | Objects/object.c | - | _PyLineIterator | - |
| 632 | Objects/object.c | - | _PyPositionsIterator | - |
| 633 | Python/perf_trampoline.c | - | _Py_trampoline_func_start | - |
| 634 | Python/perf_trampoline.c | - | _Py_trampoline_func_end | - |
| 635 | Modules/expat/xmlrole.c | - | prolog0 | - |
| 636 | Modules/expat/xmlrole.c | - | prolog1 | - |
| 637 | Modules/expat/xmlrole.c | - | prolog2 | - |
| 638 | Modules/expat/xmlrole.c | - | doctype0 | - |
| 639 | Modules/expat/xmlrole.c | - | doctype1 | - |
| 640 | Modules/expat/xmlrole.c | - | doctype2 | - |
| 641 | Modules/expat/xmlrole.c | - | doctype3 | - |
| 642 | Modules/expat/xmlrole.c | - | doctype4 | - |
| 643 | Modules/expat/xmlrole.c | - | doctype5 | - |
| 644 | Modules/expat/xmlrole.c | - | internalSubset | - |
| 645 | Modules/expat/xmlrole.c | - | entity0 | - |
| 646 | Modules/expat/xmlrole.c | - | entity1 | - |
| 647 | Modules/expat/xmlrole.c | - | entity2 | - |
| 648 | Modules/expat/xmlrole.c | - | entity3 | - |
| 649 | Modules/expat/xmlrole.c | - | entity4 | - |
| 650 | Modules/expat/xmlrole.c | - | entity5 | - |
| 651 | Modules/expat/xmlrole.c | - | entity6 | - |
| 652 | Modules/expat/xmlrole.c | - | entity7 | - |
| 653 | Modules/expat/xmlrole.c | - | entity8 | - |
| 654 | Modules/expat/xmlrole.c | - | entity9 | - |
| 655 | Modules/expat/xmlrole.c | - | entity10 | - |
| 656 | Modules/expat/xmlrole.c | - | notation0 | - |
| 657 | Modules/expat/xmlrole.c | - | notation1 | - |
| 658 | Modules/expat/xmlrole.c | - | notation2 | - |
| 659 | Modules/expat/xmlrole.c | - | notation3 | - |
| 660 | Modules/expat/xmlrole.c | - | notation4 | - |
| 661 | Modules/expat/xmlrole.c | - | attlist0 | - |
| 662 | Modules/expat/xmlrole.c | - | attlist1 | - |
| 663 | Modules/expat/xmlrole.c | - | attlist2 | - |
| 664 | Modules/expat/xmlrole.c | - | attlist3 | - |
| 665 | Modules/expat/xmlrole.c | - | attlist4 | - |
| 666 | Modules/expat/xmlrole.c | - | attlist5 | - |
| 667 | Modules/expat/xmlrole.c | - | attlist6 | - |
| 668 | Modules/expat/xmlrole.c | - | attlist7 | - |
| 669 | Modules/expat/xmlrole.c | - | attlist8 | - |
| 670 | Modules/expat/xmlrole.c | - | attlist9 | - |
| 671 | Modules/expat/xmlrole.c | - | element0 | - |
| 672 | Modules/expat/xmlrole.c | - | element1 | - |
| 673 | Modules/expat/xmlrole.c | - | element2 | - |
| 674 | Modules/expat/xmlrole.c | - | element3 | - |
| 675 | Modules/expat/xmlrole.c | - | element4 | - |
| 676 | Modules/expat/xmlrole.c | - | element5 | - |
| 677 | Modules/expat/xmlrole.c | - | element6 | - |
| 678 | Modules/expat/xmlrole.c | - | element7 | - |
| 679 | Modules/expat/xmlrole.c | - | externalSubset0 | - |
| 680 | Modules/expat/xmlrole.c | - | externalSubset1 | - |
| 681 | Modules/expat/xmlrole.c | - | condSect0 | - |
| 682 | Modules/expat/xmlrole.c | - | condSect1 | - |
| 683 | Modules/expat/xmlrole.c | - | condSect2 | - |
| 684 | Modules/expat/xmlrole.c | - | declClose | - |
| 685 | Modules/expat/xmlrole.c | - | error | - |
| 686 | ## other | |||
| 687 | Modules/_io/_iomodule.c | - | _PyIO_Module | - |
| 688 | Modules/_sqlite/module.c | - | _sqlite3module | - |
| 689 | Modules/_zstd/_zstdmodule.c | - | _zstdmodule | - |
| 690 | Modules/clinic/md5module.c.h | _md5_md5 | _keywords | - |
| 691 | Modules/clinic/grpmodule.c.h | grp_getgrgid | _keywords | - |
| 692 | Modules/clinic/grpmodule.c.h | grp_getgrnam | _keywords | - |
| 693 | Objects/object.c | - | constants | static PyObject*[] |
| 694 | ## False positives | |||
| 695 | Python/specialize.c | - | _Py_InitCleanup | - |