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, steve.dower, tim.golden, zach.ware
Date 2016-08-27.06:42:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472280164.44.0.504131892829.issue27827@psf.upfronthosting.co.za>
In-reply-to
Content
Also, "CONIN$" and "CONOUT$" need to be added to the list of reserved names. Prior to Windows 8 these two names are reserved only for the current directory, which for the most part also applies to "CON". 

For Windows 8+, the redesign to use a real console device means that these three console devices are handled in exactly the same way as the other reserved DOS device names. For example:

Windows 10

    >>> print(os.path.abspath('C:/Temp/conout$  : spam . eggs'))
    \\.\conout$

Windows 7

    >>> print(os.path.abspath('C:/Temp/conout$  : spam . eggs'))
    C:\Temp\conout$  : spam . eggs
History
Date User Action Args
2016-08-27 06:42:44eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower
2016-08-27 06:42:44eryksunsetmessageid: <1472280164.44.0.504131892829.issue27827@psf.upfronthosting.co.za>
2016-08-27 06:42:44eryksunlinkissue27827 messages
2016-08-27 06:42:44eryksuncreate