Files
RedBear-OS/recipes/dev/python312/source/Tools/c-analyzer/cpython/ignored.tsv
T
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

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