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 akima
Recipients akima, eryksun
Date 2014-09-01.21:18:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409606291.14.0.410819954665.issue22302@psf.upfronthosting.co.za>
In-reply-to
Content
I checked for the existence of this bug in 2 other python versions today.  It's present in CPython 3.4.1, but CPython 2.7.5 doesn't exhibit the issue.


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
>>>


Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:38:22) [MSC v.1600 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")
False
>>> os.path.isabs(r"\\server\share\folder")
True
>>> os.path.isabs(r"\\server\share\folder\folder")
True
>>>
History
Date User Action Args
2014-09-01 21:18:11akimasetrecipients: + akima, eryksun
2014-09-01 21:18:11akimasetmessageid: <1409606291.14.0.410819954665.issue22302@psf.upfronthosting.co.za>
2014-09-01 21:18:11akimalinkissue22302 messages
2014-09-01 21:18:10akimacreate