]> granicus.if.org Git - python/commitdiff
#1934: fix os.path.isabs docs.
authorGeorg Brandl <georg@python.org>
Sat, 26 Jan 2008 09:43:35 +0000 (09:43 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 26 Jan 2008 09:43:35 +0000 (09:43 +0000)
Doc/library/os.path.rst

index 125044d82a04084bddc9ec09add393fc879f5fac..05eed8a2b80f833e9bdf64869d21d82af91a58b5 100644 (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)