diff options
-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", |