Oleg Iarygin <o...@arhadthedev.net> added the comment:

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.

----------
nosy: +arhadthedev

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue47161>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to