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 arhadthedev
Recipients John15321, arhadthedev
Date 2022-03-30.11:58:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
I started to investigate and found that a double slash in the beginning cancels any parsing of a path:

    >>> Path("//Library/Video")._parts
    ['\\\\Library\\Video\\']

vs

    >>> Path("/Library/Video")._parts
    ['\\', 'Library', 'Video']

Investigating further.
History
Date User Action Args
2022-03-30 11:58:01arhadthedevsetrecipients: + arhadthedev, John15321
2022-03-30 11:58:01arhadthedevsetmessageid: <[email protected]>
2022-03-30 11:58:00arhadthedevlinkissue47161 messages
2022-03-30 11:58:00arhadthedevcreate