diff options
author | Georg Brandl <georg@python.org> | 2008-01-26 11:02:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-26 11:02:22 (GMT) |
commit | 0522548d610098641a8420d3970c48e0dbc8a8ca (patch) | |
tree | 6f70afcbfe42031faeb30419457e07c6aa053e54 | |
parent | 422319937e49a2211081715eddb0a2324ccbf230 (diff) | |
download | cpython-0522548d610098641a8420d3970c48e0dbc8a8ca.zip cpython-0522548d610098641a8420d3970c48e0dbc8a8ca.tar.gz cpython-0522548d610098641a8420d3970c48e0dbc8a8ca.tar.bz2 |
Slashes allowed on Windows.
-rw-r--r-- | Doc/library/os.path.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 05eed8a..fa6b0c0 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -145,7 +145,7 @@ write files see :func:`open`, and for accessing the filesystem see the .. 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. |