From: Guido van Rossum Date: Tue, 20 Aug 1996 20:24:17 +0000 (+0000) Subject: Correct description of splitext(). X-Git-Tag: v1.4b3~83 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=422869a75ca4e56b89895da7c25369b6b6d9dbec;p=thirdparty%2FPython%2Fcpython.git Correct description of splitext(). --- diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 4590f8dc31e4..014dfe279839 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.