mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
gh-92584: Remove references to removed _bootsubprocess (#99062)
The _bootsubprocess module was removed in gh-93939
by commit 81dca70d70
.
This commit is contained in:
parent
00b6745f16
commit
e99c507013
2 changed files with 1 additions and 8 deletions
|
@ -1,15 +1,9 @@
|
||||||
"""Shared AIX support functions."""
|
"""Shared AIX support functions."""
|
||||||
|
|
||||||
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import sysconfig
|
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):
|
def _aix_tag(vrtl, bd):
|
||||||
# type: (List[int], int) -> str
|
# type: (List[int], int) -> str
|
||||||
|
|
|
@ -50,7 +50,6 @@ OMIT_FILES = (
|
||||||
"xdrlib.py",
|
"xdrlib.py",
|
||||||
# other platforms
|
# other platforms
|
||||||
"_aix_support.py",
|
"_aix_support.py",
|
||||||
"_bootsubprocess.py",
|
|
||||||
"_osx_support.py",
|
"_osx_support.py",
|
||||||
# webbrowser
|
# webbrowser
|
||||||
"antigravity.py",
|
"antigravity.py",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue