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 christian.heimes
Recipients Hanz, SilentGhost, christian.heimes
Date 2013-11-30.17:18:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385831930.97.0.725918826671.issue19844@psf.upfronthosting.co.za>
In-reply-to
Content
Ah, you fell victim to a classic gotcha. :)
Either you have to quote \ with \\ or you have to use a raw string. Withouth a raw string \t is TAB and \01 is the byte \x01:

>>> import ntpath
>>> fname = r"C:\progs\python\test\target\Amy Winehouse\Amy Winehouse - Back To Black (2006)\01 - Rehab.ogg"
>>> ntpath.split(fname)
('C:\\progs\\python\\test\\target\\Amy Winehouse\\Amy Winehouse - Back To Black (2006)', '01 - Rehab.ogg')

>>> len("\01")
1
>>> "\01" == chr(1)
True
>>> len(r"\01")
3
History
Date User Action Args
2013-11-30 17:18:51christian.heimessetrecipients: + christian.heimes, SilentGhost, Hanz
2013-11-30 17:18:50christian.heimessetmessageid: <1385831930.97.0.725918826671.issue19844@psf.upfronthosting.co.za>
2013-11-30 17:18:50christian.heimeslinkissue19844 messages
2013-11-30 17:18:50christian.heimescreate