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 giampaolo.rodola
Recipients georg.brandl, giampaolo.rodola
Date 2008-01-26.10:23:04
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1201342986.39.0.617893833729.issue1934@psf.upfronthosting.co.za>
In-reply-to
Content
> Return ``True`` if *path* is an absolute pathname.  On Unix, that 
> means it begins with a slash, on Windows that it begins with a 
> backslash after chopping off a potential drive letter.

Actually the Windows part is not completely true since on Windows
pathnames containing slashes ('/') are also permitted and treated as if
they were backslashes ('\\').

>>> os.path.isabs('/')
True
>>> os.path.isabs('C:/')
True
>>> os.path.isabs('C:\\/')
True
History
Date User Action Args
2008-07-26 13:54:22georg.brandlsetspambayes_score: 0.773094 -> 0.0
2008-01-26 10:23:06giampaolo.rodolasetspambayes_score: 0.773094 -> 0.773094
recipients: + giampaolo.rodola, georg.brandl
2008-01-26 10:23:06giampaolo.rodolasetspambayes_score: 0.773094 -> 0.773094
messageid: <1201342986.39.0.617893833729.issue1934@psf.upfronthosting.co.za>
2008-01-26 10:23:04giampaolo.rodolalinkissue1934 messages
2008-01-26 10:23:04giampaolo.rodolacreate