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.12:24:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1648643069.16.0.36018690547.issue47161@roundup.psfhosted.org>
In-reply-to
Content
As I found out, any path starting with two double slashes is treated as an UNC (network) path:

    vvvvvvvvvvvvvvvvvvvv root
    \\machine\mountpoint\directory\etc\...
               directory ^^^^^^^^^^^^^^^^^

So "/Library/Video" and "/" are directories mounted on your machine while "//Library/Video" is a computer named "Library" with a share named "Video".

However, an error message in Python 3.8 (as a file path suggests) is misleading. In 3.11 it was changed to "'\\Library\Video\' is not in the subpath of '\' OR one path is relative and the other is absolute."
History
Date User Action Args
2022-03-30 12:24:29arhadthedevsetrecipients: + arhadthedev, John15321
2022-03-30 12:24:29arhadthedevsetmessageid: <1648643069.16.0.36018690547.issue47161@roundup.psfhosted.org>
2022-03-30 12:24:29arhadthedevlinkissue47161 messages
2022-03-30 12:24:29arhadthedevcreate