summaryrefslogtreecommitdiffstats
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2007-03-07 11:04:33 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2007-03-07 11:04:33 (GMT)
commit05c075d629fc81035b438e3b146872dc7799f260 (patch)
tree4240955ee3ea5894d0c068c9669244a7200e768c /Lib/posixpath.py
parentf08c073ded5a7cf5786f9a561e3d9529def81b6e (diff)
downloadcpython-05c075d629fc81035b438e3b146872dc7799f260.zip
cpython-05c075d629fc81035b438e3b146872dc7799f260.tar.gz
cpython-05c075d629fc81035b438e3b146872dc7799f260.tar.bz2
Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', '').
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r--Lib/posixpath.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 1521236..661d8db 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -12,6 +12,7 @@ for manipulation of the pathname component of URLs.
import os
import stat
+import genericpath
from genericpath import *
__all__ = ["normcase","isabs","join","splitdrive","split","splitext",
@@ -88,14 +89,8 @@ def split(p):
# It is always true that root + ext == p.
def splitext(p):
- """Split the extension from a pathname. Extension is everything from the
- last dot to the end. Returns "(root, ext)", either part may be empty."""
- i = p.rfind('.')
- if i<=p.rfind('/'):
- return p, ''
- else:
- return p[:i], p[i:]
-
+ return genericpath._splitext(p, sep, altsep, extsep)
+splitext.__doc__ = genericpath._splitext.__doc__
# Split a pathname into a drive specification and the rest of the
# path. Useful on DOS/Windows/NT; on Unix, the drive is always empty.