Skip to content
Permalink
Browse files
gh-92584: Remove references to removed _bootsubprocess (#99062)
The _bootsubprocess module was removed in gh-93939
by commit 81dca70.
  • Loading branch information
vstinner committed Nov 3, 2022
1 parent 00b6745 commit e99c5070132c13de41eeafa28307cc7b394e0958
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
@@ -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
@@ -50,7 +50,6 @@
"xdrlib.py",
# other platforms
"_aix_support.py",
"_bootsubprocess.py",
"_osx_support.py",
# webbrowser
"antigravity.py",

0 comments on commit e99c507

Please sign in to comment.