diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-04 13:50:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 13:50:19 (GMT) |
commit | 1ec63b62035e73111e204a0e03b83503e1c58f2e (patch) | |
tree | 1f21da1148b4b09981c49f900adf9194930e62e4 /Misc | |
parent | dffe4c07095e0c693e094d3c140e85a68bd8128e (diff) | |
download | cpython-1ec63b62035e73111e204a0e03b83503e1c58f2e.zip cpython-1ec63b62035e73111e204a0e03b83503e1c58f2e.tar.gz cpython-1ec63b62035e73111e204a0e03b83503e1c58f2e.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2020-03-02-14-44-09.bpo-39763.GGEwhH.rst | 3 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-03-02-14-43-19.bpo-39763.5a822c.rst | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2020-03-02-14-44-09.bpo-39763.GGEwhH.rst b/Misc/NEWS.d/next/Build/2020-03-02-14-44-09.bpo-39763.GGEwhH.rst new file mode 100644 index 0000000..e983b4f --- /dev/null +++ b/Misc/NEWS.d/next/Build/2020-03-02-14-44-09.bpo-39763.GGEwhH.rst @@ -0,0 +1,3 @@ +setup.py now uses a basic implementation of the :mod:`subprocess` module if +the :mod:`subprocess` module is not available: before required C extension +modules are built. diff --git a/Misc/NEWS.d/next/Library/2020-03-02-14-43-19.bpo-39763.5a822c.rst b/Misc/NEWS.d/next/Library/2020-03-02-14-43-19.bpo-39763.5a822c.rst new file mode 100644 index 0000000..73ea8f9 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-03-02-14-43-19.bpo-39763.5a822c.rst @@ -0,0 +1,2 @@ +Reimplement :func:`distutils.spawn.spawn` function with the +:mod:`subprocess` module. |