Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e99c507

Browse files
authored
pythongh-92584: Remove references to removed _bootsubprocess (python#99062)
The _bootsubprocess module was removed in pythongh-93939 by commit 81dca70.
1 parent 00b6745 commit e99c507

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

Lib/_aix_support.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
"""Shared AIX support functions."""
22

3+
import subprocess
34
import sys
45
import sysconfig
56

6-
try:
7-
import subprocess
8-
except ImportError: # pragma: no cover
9-
# _aix_support is used in distutils by setup.py to build C extensions,
10-
# before subprocess dependencies like _posixsubprocess are available.
11-
import _bootsubprocess as subprocess
12-
137

148
def _aix_tag(vrtl, bd):
159
# type: (List[int], int) -> str

Tools/wasm/wasm_assets.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"xdrlib.py",
5151
# other platforms
5252
"_aix_support.py",
53-
"_bootsubprocess.py",
5453
"_osx_support.py",
5554
# webbrowser
5655
"antigravity.py",

0 commit comments

Comments
 (0)