This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients eryksun, paul.moore, seahoh, steve.dower, tim.golden, zach.ware
Date 2019-08-22.04:41:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566448870.53.0.69326413572.issue37894@roundup.psfhosted.org>
In-reply-to
Content
The code that sets up the PATHEXT `files` could be moved up. It also needs to be fixed in order to implement the correct behavior. For example:

    use_bytes = isinstance(cmd, bytes)

    files = [cmd]
    if _WINDOWS:
        # Also look for the name plus each PATHEXT extension.
        default_pathext = '.COM;.EXE;.BAT;.CMD;.VBS;.JS;.WS;.MSC'
        pathext = os.environ.get('PATHEXT', default_pathext)
        if use_bytes:
            pathext = os.fsencode(pathext).split(b';')
        else:
            pathext = pathext.split(';')
        for ext in pathext:
            files.append(cmd + ext)

    # If we're given a path with a directory part, look it up directly rather
    # than referring to PATH directories. This includes checking relative to the
    # current directory, e.g. ./script.
    if os.path.dirname(cmd):
        for file in files:
            if _access_check(file, mode):
                return file
        return None

The author of the PATHEXT code in shutil.which() was following a source that documented the behavior incorrectly. CMD always looks for the filename before trying to append the PATHEXT extensions. It does not limit its search to PATHEXT extensions. The only exception is a file that has no extension, in which case "." has to be set in PATHEXT to get CMD to find the file. However, where.exe finds a file that has no extension, regardless of PATHEXT, so Python's which() should be free to follow that example.
History
Date User Action Args
2019-08-22 04:41:10eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower, seahoh
2019-08-22 04:41:10eryksunsetmessageid: <1566448870.53.0.69326413572.issue37894@roundup.psfhosted.org>
2019-08-22 04:41:10eryksunlinkissue37894 messages
2019-08-22 04:41:10eryksuncreate