[Python-checkins] r60317 - python/trunk/Doc/library/os.path.rst

georg.brandl python-checkins at python.org
Sat Jan 26 12:02:22 CET 2008


Author: georg.brandl
Date: Sat Jan 26 12:02:22 2008
New Revision: 60317

Modified:
   python/trunk/Doc/library/os.path.rst
Log:
Slashes allowed on Windows.


Modified: python/trunk/Doc/library/os.path.rst
==============================================================================
--- python/trunk/Doc/library/os.path.rst	(original)
+++ python/trunk/Doc/library/os.path.rst	Sat Jan 26 12:02:22 2008
@@ -145,7 +145,7 @@
 .. function:: isabs(path)
 
    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
+   begins with a slash, on Windows that it begins with a (back)slash after chopping
    off a potential drive letter.
 
 


More information about the Python-checkins mailing list