]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39763: Add _bootsubprocess to build Python on AIX (GH-18872)
authorVictor Stinner <vstinner@python.org>
Mon, 9 Mar 2020 22:45:59 +0000 (23:45 +0100)
committerGitHub <noreply@github.com>
Mon, 9 Mar 2020 22:45:59 +0000 (23:45 +0100)
commitaddaaaa946855ad59c8f5c698aa0891d7e44f018
tree0de7ede6cf1117055d6a45120a73d3c866e3f0bb
parent9ad58acbe8b90b4d0f2d2e139e38bb5aa32b7fb6
bpo-39763: Add _bootsubprocess to build Python on AIX (GH-18872)

Add _bootsubprocess module to bootstrap Python: subprocess
implementation which only uses the os module.

On AIX, distutils.util uses _aix_support which calls
subprocess.check_output(), before the _posixsubprocess module is
built. Implement check_output() with os.system() in _bootsubprocess.
Lib/_bootsubprocess.py [new file with mode: 0644]
setup.py