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 kmaork
Recipients kmaork
Date 2019-03-15.15:37:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552664225.98.0.0986812073641.issue36305@roundup.psfhosted.org>
In-reply-to
Content
The behavior of WindowsPath is undefined when used with drive paths, specifically with no trailing slash:

WindowsPath('cc:').absolute() -> WindowsPath('C:/Users/maor/cc:')
WindowsPath('c:').absolute() -> WindowsPath('c:') 
WindowsPath('c:').is_absolute() -> False
WindowsPath('c:') / 'p' -> WindowsPath('c:p')
WindowsPath('c:p').absolute() -> WindowsPath('c:p')
WindowsPath('c:p').is_absolute() -> False
History
Date User Action Args
2019-03-15 15:37:06kmaorksetrecipients: + kmaork
2019-03-15 15:37:05kmaorksetmessageid: <1552664225.98.0.0986812073641.issue36305@roundup.psfhosted.org>
2019-03-15 15:37:05kmaorklinkissue36305 messages
2019-03-15 15:37:05kmaorkcreate