[issue22302] Windows os.path.isabs UNC path bug

Akima report at bugs.python.org
Sat Sep 6 09:31:12 CEST 2014


Akima added the comment:

eryksun: You have marked this bug as effecting Python 2.7.  When I tested for the bug on 2.7.5 the problem didn't show up:

Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os.path
>>> os.path.isabs(r"\\server")
True
>>> os.path.isabs(r"\\server\share")
True
>>> os.path.isabs(r"\\server\share\folder")
True
>>> os.path.isabs(r"\\server\share\folder\folder")
True
>>>

Did you independently test a later release of version 2.7 and find the issue?  If not, could you remove Python 2.7 from the "Versions" list.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue22302>
_______________________________________


More information about the Python-bugs-list mailing list