Message226243
| 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:11 | akima | set | recipients:
+ akima, eryksun |
| 2014年09月01日 21:18:11 | akima | set | messageid: <1409606291.14.0.410819954665.issue22302@psf.upfronthosting.co.za> |
| 2014年09月01日 21:18:11 | akima | link | issue22302 messages |
| 2014年09月01日 21:18:10 | akima | create |
|