]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39763: distutils.spawn now uses subprocess (GH-18743)
authorVictor Stinner <vstinner@python.org>
Wed, 4 Mar 2020 13:50:19 +0000 (14:50 +0100)
committerGitHub <noreply@github.com>
Wed, 4 Mar 2020 13:50:19 +0000 (14:50 +0100)
commit1ec63b62035e73111e204a0e03b83503e1c58f2e
tree1f21da1148b4b09981c49f900adf9194930e62e4
parentdffe4c07095e0c693e094d3c140e85a68bd8128e
bpo-39763: distutils.spawn now uses subprocess (GH-18743)

Reimplement distutils.spawn.spawn() function with the subprocess
module.

setup.py now uses a basic implementation of the subprocess module if
the subprocess module is not available: before required C extension
modules are built.
Lib/distutils/spawn.py
Lib/distutils/tests/test_spawn.py
Misc/NEWS.d/next/Build/2020-03-02-14-44-09.bpo-39763.GGEwhH.rst [new file with mode: 0644]
Misc/NEWS.d/next/Library/2020-03-02-14-43-19.bpo-39763.5a822c.rst [new file with mode: 0644]
setup.py