Files
typthon/Tools/c-analyzer/cpython/ignored.tsv
2025-07-22 07:54:51 +01:00

31 KiB

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