Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', '').

This commit is contained in:
Martin v. Löwis 2007-03-07 11:04:33 +00:00
parent f08c073ded
commit 05c075d629
9 changed files with 69 additions and 40 deletions

View file

@ -2,6 +2,7 @@
import os
from stat import *
import genericpath
from genericpath import *
__all__ = ["normcase","isabs","join","splitdrive","split","splitext",
@ -69,17 +70,8 @@ def split(s):
def splitext(p):
"""Split a path into root and extension.
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."""
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__
def splitdrive(p):
"""Split a pathname into a drive specification and the rest of the