diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-04-17 15:44:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-17 15:44:06 (GMT) |
commit | 197f0447e3bcfa4f529fedab09966d7e3d283979 (patch) | |
tree | 8a8aa6dd1696d86512f7f438796c986c6224ef2c /Lib/distutils/spawn.py | |
parent | 693c104ae74feea11f0b51176dc91ecd153230c0 (diff) | |
download | cpython-197f0447e3bcfa4f529fedab09966d7e3d283979.zip cpython-197f0447e3bcfa4f529fedab09966d7e3d283979.tar.gz cpython-197f0447e3bcfa4f529fedab09966d7e3d283979.tar.bz2 |
bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861)
Diffstat (limited to 'Lib/distutils/spawn.py')
-rw-r--r-- | Lib/distutils/spawn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py index 8883272..d3a12c2 100644 --- a/Lib/distutils/spawn.py +++ b/Lib/distutils/spawn.py @@ -188,7 +188,7 @@ def find_executable(executable, path=None): # os.confstr() or CS_PATH is not available path = os.defpath # bpo-35755: Don't use os.defpath if the PATH environment variable is - # set to an empty string to mimick Unix which command behavior + # set to an empty string # PATH='' doesn't match, whereas PATH=':' looks in the current directory if not path: |