]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-92584: Remove references to removed _bootsubprocess (#99062)
authorVictor Stinner <vstinner@python.org>
Thu, 3 Nov 2022 17:12:45 +0000 (18:12 +0100)
committerGitHub <noreply@github.com>
Thu, 3 Nov 2022 17:12:45 +0000 (18:12 +0100)
The _bootsubprocess module was removed in gh-93939
by commit 81dca70d704d0834d8c30580e648a973250b2973.

Lib/_aix_support.py
Tools/wasm/wasm_assets.py

index 1d8482ff3825071c13c390b3c36d4e7b8b4043b2..18533e769b75149d5587cfd4b1c88cf1c5aec6b5 100644 (file)
@@ -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
index 98a2841ce2b0e0ec19efbb1e39da26ee9beaf378..103f0d6d224b4d432348591c526ac546c8f82cfc 100755 (executable)
@@ -50,7 +50,6 @@ OMIT_FILES = (
     "xdrlib.py",
     # other platforms
     "_aix_support.py",
-    "_bootsubprocess.py",
     "_osx_support.py",
     # webbrowser
     "antigravity.py",