8000 gh-81057: Move Globals in Core Code to _PyRuntimeState by ericsnowcurrently · Pull Request #99496 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-81057: Move Globals in Core Code to _PyRuntimeState #99496

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Re-organize the ignored list a tiny bit.
  • Loading branch information
ericsnowcurrently committed Nov 14, 2022
commit 5357ea4b03da4491d1d656fc139c6adbaa4c74c2
8 changes: 6 additions & 2 deletions Tools/c-analyzer/cpython/ignored.tsv
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ filename funcname name reason
##################################
# mutable but known to be safe

Python/import.c - inittab_copy -
Python/import.c - PyImport_Inittab -
Python/pylifecycle.c - _PyRuntime -

# All uses of _PyArg_Parser are handled in c-analyzr/cpython/_analyzer.py.
Expand All @@ -32,6 +30,12 @@ Python/initconfig.c - Py_IsolatedFlag -
Python/initconfig.c - Py_LegacyWindowsFSEncodingFlag -
Python/initconfig.c - Py_LegacyWindowsStdioFlag -

#-----------------------
# effectively const, initialized before init

Python/import.c - inittab_copy -
Python/import.c - PyImport_Inittab -

#-----------------------
# effectively const, initialized during init

Expand Down
0