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 tim.peters
Recipients abarry, doc, docs@python, r.david.murray, tim.golden, tim.peters
Date 2016-05-17.16:29:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463502558.39.0.441251755831.issue27045@psf.upfronthosting.co.za>
In-reply-to
Content
All versions of cmd.exe want backslashes in paths for the commands implemented _by_ cmd.exe - those interpret a forward slash as indicating an option.  For example, here on Win10 Pro:

C:\WINDOWS\system32>dir c:\Windows\System32\xwreg.dll
 Volume in drive C is OS
 Volume Serial Number is 5E8B-CFAC

 Directory of c:\Windows\System32

10/30/2015  02:17 AM           120,320 xwreg.dll
               1 File(s)        120,320 bytes
               0 Dir(s)  2,880,244,813,824 bytes free

`dir` is implemented by cmd.exe, so that example doesn't work with forward slashes:

C:\WINDOWS\system32>dir c:/Windows/System32/xwreg.dll
Parameter format not correct - "Windows".
History
Date User Action Args
2016-05-17 16:29:18tim.peterssetrecipients: + tim.peters, tim.golden, r.david.murray, docs@python, abarry, doc
2016-05-17 16:29:18tim.peterssetmessageid: <1463502558.39.0.441251755831.issue27045@psf.upfronthosting.co.za>
2016-05-17 16:29:18tim.peterslinkissue27045 messages
2016-05-17 16:29:17tim.peterscreate