Message226475
| Author |
akima |
| Recipients |
akima, eryksun, pitrou, serhiy.storchaka, steve.dower |
| Date |
2014年09月06日.07:31:12 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1409988672.54.0.793103601372.issue22302@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
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. |
|