From e99c5070132c13de41eeafa28307cc7b394e0958 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 3 Nov 2022 18:12:45 +0100 Subject: gh-92584: Remove references to removed _bootsubprocess (#99062) The _bootsubprocess module was removed in gh-93939 by commit 81dca70d704d0834d8c30580e648a973250b2973. --- Lib/_aix_support.py | 8 +------- Tools/wasm/wasm_assets.py | 1 - 2 files changed, 1 insertion(+), 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", -- cgit v0.12