diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-04 09:01:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-04 09:01:09 (GMT) |
commit | 39487196c87e28128ea907a0d9b8a88ba53f68d5 (patch) | |
tree | bca89e0d6cc9afd2af485019feeff34c821d9caa /Misc | |
parent | ec74d187f50a8a48f94eb37023300583fbd644cc (diff) | |
download | cpython-39487196c87e28128ea907a0d9b8a88ba53f68d5.zip cpython-39487196c87e28128ea907a0d9b8a88ba53f68d5.tar.gz cpython-39487196c87e28128ea907a0d9b8a88ba53f68d5.tar.bz2 |
bpo-34530: Fix distutils find_executable() (GH-9049)
distutils.spawn.find_executable() now falls back on os.defpath if the
PATH environment variable is not set.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-09-03-23-23-32.bpo-34530.h_Xsu7.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-03-23-23-32.bpo-34530.h_Xsu7.rst b/Misc/NEWS.d/next/Library/2018-09-03-23-23-32.bpo-34530.h_Xsu7.rst new file mode 100644 index 0000000..064de73 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-09-03-23-23-32.bpo-34530.h_Xsu7.rst @@ -0,0 +1,2 @@ +``distutils.spawn.find_executable()`` now falls back on :data:`os.defpath` +if the ``PATH`` environment variable is not set. |