Issue 113: Split Extension from OperatingSystemLibrary works differently on Python 2.6 than earlier versions
http://code.google.com/p/robotframework/issues/detail?id=113

New issue report by laukpe:
os.path.splitext method in Python 2.6 never considers leading dots in file
names as extension separators:

Python 2.5 and Jython 2.2:
os.path.splitext('.foo')
('', '.foo')

Python 2.6 rc 2:
os.path.splitext('.foo')
('.foo', '')

Our Split Extension keyword uses os.path.splitext internally and thus
returns different results on different Python versions.



Issue attributes:
        Status: Accepted
        Owner: laukpe
        Labels: Type-Defect Priority-Medium Target-2.0.2

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

Reply via email to