[issue33898] pathlib issues with Windows device paths

2020-04-17 Thread Antoine Pitrou
Change by Antoine Pitrou : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33898] pathlib issues with Windows device paths

2019-03-07 Thread Steve Dower
Steve Dower added the comment: Eryk - I've got the PR ready as far as I'm concerned. Have you had a look to see if you're happy with its logic for these cases? -- ___ Python tracker

[issue33898] pathlib issues with Windows device paths

2019-02-16 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33898] pathlib issues with Windows device paths

2018-08-04 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +8163 stage: test needed -> patch review ___ Python tracker ___ ___

[issue33898] pathlib issues with Windows device paths

2018-06-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33898] pathlib issues with Windows device paths

2018-06-18 Thread Eryk Sun
New submission from Eryk Sun : For \\?\ extended device paths, pathlib removes the trailing slash for the root directory if the device isn't UNC or a logical (A-Z) drive. Correct: >>> str(Path('//?/UNC/')) '?\\UNC\\' >>> str(Path('//?/Z:/')) '?\\Z:\\' Incorrect: