summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.path.rst
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2009-03-30 20:02:08 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2009-03-30 20:02:08 (GMT)
commit008af85dc06b8092ac411583265d6d48f5eb2557 (patch)
tree3ad35a42a23500e482f625e63aee91954a4216bb /Doc/library/os.path.rst
parent354bb5ca671dafffd35e5177e4c8225bb8d4f48a (diff)
downloadcpython-008af85dc06b8092ac411583265d6d48f5eb2557.zip
cpython-008af85dc06b8092ac411583265d6d48f5eb2557.tar.gz
cpython-008af85dc06b8092ac411583265d6d48f5eb2557.tar.bz2
Fix for issue 13095
Diffstat (limited to 'Doc/library/os.path.rst')
-rw-r--r--Doc/library/os.path.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index dd67a7c..bc2220d 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -190,7 +190,7 @@ write files see :func:`open`, and for accessing the filesystem see the
.. function:: normcase(path)
- Normalize the case of a pathname. On Unix, this returns the path unchanged; on
+ Normalize the case of a pathname. On Unix and MacOSX, this returns the path unchanged; on
case-insensitive filesystems, it converts the path to lowercase. On Windows, it
also converts forward slashes to backward slashes.