diff options
author | Victor Stinner <vstinner@python.org> | 2022-11-03 17:12:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-03 17:12:45 (GMT) |
commit | e99c5070132c13de41eeafa28307cc7b394e0958 (patch) | |
tree | 9af8bba96f12b49cf8ab03e8dfa8f42d5380e67d | |
parent | 00b6745f16f8d1ffe8a9974677dbf00657a06805 (diff) | |
download | cpython-e99c5070132c13de41eeafa28307cc7b394e0958.zip cpython-e99c5070132c13de41eeafa28307cc7b394e0958.tar.gz cpython-e99c5070132c13de41eeafa28307cc7b394e0958.tar.bz2 |
gh-92584: Remove references to removed _bootsubprocess (#99062)
The _bootsubprocess module was removed in gh-93939
by commit 81dca70d704d0834d8c30580e648a973250b2973.
-rw-r--r-- | Lib/_aix_support.py | 8 | ||||
-rwxr-xr-x | Tools/wasm/wasm_assets.py | 1 |
2 files changed, 1 insertions, 8 deletions
diff --git a/Lib/_aix_support.py b/Lib/_aix_support.py index 1d8482f..18533e7 100644 --- a/Lib/_aix_support.py +++ b/Lib/_aix_support.py @@ -1,15 +1,9 @@ """Shared AIX support functions.""" +import subprocess import sys import sysconfig -try: - import subprocess -except ImportError: # pragma: no cover - # _aix_support is used in distutils by setup.py to build C extensions, - # before subprocess dependencies like _posixsubprocess are available. - import _bootsubprocess as subprocess - def _aix_tag(vrtl, bd): # type: (List[int], int) -> str diff --git a/Tools/wasm/wasm_assets.py b/Tools/wasm/wasm_assets.py index 98a2841..103f0d6 100755 --- a/Tools/wasm/wasm_assets.py +++ b/Tools/wasm/wasm_assets.py @@ -50,7 +50,6 @@ OMIT_FILES = ( "xdrlib.py", # other platforms "_aix_support.py", - "_bootsubprocess.py", "_osx_support.py", # webbrowser "antigravity.py", |