diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-02-04 01:14:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-04 01:14:43 (GMT) |
commit | c67b00534abfeca83016a00818cf1fd949613d6b (patch) | |
tree | 8e85847abe633ad261150d6885be199c036c0714 /Tools/build | |
parent | d4c410f0f922683f38c9d435923939d037fbd8c2 (diff) | |
download | cpython-c67b00534abfeca83016a00818cf1fd949613d6b.zip cpython-c67b00534abfeca83016a00818cf1fd949613d6b.tar.gz cpython-c67b00534abfeca83016a00818cf1fd949613d6b.tar.bz2 |
gh-101524: Split Up the _xxsubinterpreters Module (gh-101526)
This is step 1 in potentially dropping all the "channel"-related code. Channels have already been removed from PEP 554.
https://github.com/python/cpython/issues/101524
Diffstat (limited to 'Tools/build')
-rw-r--r-- | Tools/build/generate_stdlib_module_names.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/build/generate_stdlib_module_names.py b/Tools/build/generate_stdlib_module_names.py index c8a23f4..d15e5e2 100644 --- a/Tools/build/generate_stdlib_module_names.py +++ b/Tools/build/generate_stdlib_module_names.py @@ -36,6 +36,7 @@ IGNORE = { '_testmultiphase', '_testsinglephase', '_xxsubinterpreters', + '_xxinterpchannels', '_xxtestfuzz', 'idlelib.idle_test', 'test', |