diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-12-12 17:43:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 17:43:30 (GMT) |
commit | a49b427b0265c415d9089da0be39f4b5ccd1f15f (patch) | |
tree | a7ae1247798124110a002bb5a9b088cefa66fad6 /Tools | |
parent | cde141717578f22947553db776980aa3e8801353 (diff) | |
download | cpython-a49b427b0265c415d9089da0be39f4b5ccd1f15f.zip cpython-a49b427b0265c415d9089da0be39f4b5ccd1f15f.tar.gz cpython-a49b427b0265c415d9089da0be39f4b5ccd1f15f.tar.bz2 |
gh-76785: More Fixes for test.support.interpreters (gh-113012)
This brings the module (along with the associated extension modules) mostly in sync with PEP 734. There are only a few small things to wrap up.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/build/generate_stdlib_module_names.py | 1 | ||||
-rw-r--r-- | Tools/c-analyzer/cpython/ignored.tsv | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Tools/build/generate_stdlib_module_names.py b/Tools/build/generate_stdlib_module_names.py index 766a85d..5dce4e0 100644 --- a/Tools/build/generate_stdlib_module_names.py +++ b/Tools/build/generate_stdlib_module_names.py @@ -36,6 +36,7 @@ IGNORE = { '_testsinglephase', '_xxsubinterpreters', '_xxinterpchannels', + '_xxinterpqueues', '_xxtestfuzz', 'idlelib.idle_test', 'test', diff --git a/Tools/c-analyzer/cpython/ignored.tsv b/Tools/c-analyzer/cpython/ignored.tsv index ff6e1ef..2f9e80d 100644 --- a/Tools/c-analyzer/cpython/ignored.tsv +++ b/Tools/c-analyzer/cpython/ignored.tsv @@ -165,6 +165,7 @@ Python/pylifecycle.c fatal_error reentrant - # explicitly protected, internal-only Modules/_xxinterpchannelsmodule.c - _globals - +Modules/_xxinterpqueuesmodule.c - _globals - # set once during module init Modules/_decimal/_decimal.c - minalloc_is_set - |