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 eryksun
Recipients akima, eryksun, pitrou, serhiy.storchaka, steve.dower
Date 2014-09-05.19:09:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409944151.66.0.302551005407.issue22302@psf.upfronthosting.co.za>
In-reply-to
Content
> "//server" is just the same as "/server" or "///server".

Repeated slashes aren't collapsed at the start of a Windows path. Here's what I get in Windows 7:

    >>> os.listdir('/server')   
    []
    >>> os.listdir('//server')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    FileNotFoundError: [WinError 53] The network path was not found: '//server'
    >>> os.listdir('///server')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    FileNotFoundError: [WinError 161] The specified path is invalid: '///server'
History
Date User Action Args
2014-09-05 19:09:11eryksunsetrecipients: + eryksun, pitrou, serhiy.storchaka, steve.dower, akima
2014-09-05 19:09:11eryksunsetmessageid: <1409944151.66.0.302551005407.issue22302@psf.upfronthosting.co.za>
2014-09-05 19:09:11eryksunlinkissue22302 messages
2014-09-05 19:09:11eryksuncreate