summaryrefslogtreecommitdiffstats
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-20 20:24:17 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-20 20:24:17 (GMT)
commit422869a75ca4e56b89895da7c25369b6b6d9dbec (patch)
treeb556c678f0c9188012fa256494e314343a2f710a /Lib/posixpath.py
parent0f6a3bf4900d8a7dfff44713fa9719bbd3041321 (diff)
downloadcpython-422869a75ca4e56b89895da7c25369b6b6d9dbec.zip
cpython-422869a75ca4e56b89895da7c25369b6b6d9dbec.tar.gz
cpython-422869a75ca4e56b89895da7c25369b6b6d9dbec.tar.bz2
Correct description of splitext().
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r--Lib/posixpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 4590f8d..014dfe2 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -53,7 +53,7 @@ def split(p):
# Split a path in root and extension.
-# The extension is everything starting at the first dot in the last
+# The extension is everything starting at the last dot in the last
# pathname component; the root is everything before that.
# It is always true that root + ext == p.