Correct description of splitext().

This commit is contained in:
Guido van Rossum 1996-08-20 20:24:17 +00:00
parent 0f6a3bf490
commit 422869a75c

View file

@ -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.