This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Hanz
Recipients Hanz
Date 2013-11-30.17:06:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385831169.77.0.484147832993.issue19844@psf.upfronthosting.co.za>
In-reply-to
Content
os.path.split fails on windows path
to reproduce in python 3.3:

file = "C:\progs\python\test\target\Amy Winehouse\Amy Winehouse - Back To Black (2006)\01 - Rehab.ogg"
os.path.split(os.path.abspath(file))[0]
returns
'C:\\progs\\python\testordner\target\\Amy Winehouse'
and
os.path.split(os.path.abspath(file))[1]
returns
'Amy Winehouse - Back To Black (2006)\x01 - Rehab.ogg'

According to the definition the tail should never contain a tail.
History
Date User Action Args
2013-11-30 17:06:09Hanzsetrecipients: + Hanz
2013-11-30 17:06:09Hanzsetmessageid: <1385831169.77.0.484147832993.issue19844@psf.upfronthosting.co.za>
2013-11-30 17:06:09Hanzlinkissue19844 messages
2013-11-30 17:06:09Hanzcreate