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 Aaron.Meurer, Voo, daniel.ugra, eryksun, ezio.melotti, jens, loewis, pitrou, santoso.wijaya, serhiy.storchaka, steve.dower, vstinner, zach.ware
Date 2016-08-03.19:02:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470250954.91.0.968724277615.issue18199@psf.upfronthosting.co.za>
In-reply-to
Content
Apparently CoreFX adds the \\?\ prefix automatically:

https://blogs.msdn.microsoft.com/jeremykuhne/2016/06/21/more-on-new-net-path-handling

It's great that Windows 10 Anniversary Edition will be getting long path support without requiring the extended path prefix, at least for NTFS volumes. I assume that includes slash-to-backslash normalization, relative paths, and drive-relative paths. I wonder about long drive-relative paths since they depend on hidden environment variables such as "=D:". The default environment block isn't that big.

Python 3.5 supports back to Vista, so I still think automatically handling long Unicode paths, like how CoreFX reportedly works, makes for a more friendly cross-platform development experience. There are too many pitfalls with \\?\ paths -- they have to be Unicode (except that limitation is removed in Windows 10), fully qualified, use backslash only, and UNC paths have to be translated to use the \\?\UNC DOS device.
History
Date User Action Args
2016-08-03 19:02:34eryksunsetrecipients: + eryksun, loewis, pitrou, vstinner, ezio.melotti, daniel.ugra, Aaron.Meurer, santoso.wijaya, Voo, jens, zach.ware, serhiy.storchaka, steve.dower
2016-08-03 19:02:34eryksunsetmessageid: <1470250954.91.0.968724277615.issue18199@psf.upfronthosting.co.za>
2016-08-03 19:02:34eryksunlinkissue18199 messages
2016-08-03 19:02:34eryksuncreate