#1934: fix os.path.isabs docs.

This commit is contained in:
Georg Brandl 2008-01-26 09:43:35 +00:00
parent dee3f65d98
commit fe7dd50907
1 changed files with 3 additions and 1 deletions

View File

@ -144,7 +144,9 @@ write files see :func:`open`, and for accessing the filesystem see the
.. function:: isabs(path)
Return ``True`` if *path* is an absolute pathname (begins with a slash).
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.
.. function:: isfile(path)