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