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 serhiy.storchaka
Recipients ezio.melotti, gpolo, serhiy.storchaka
Date 2013-03-19.08:58:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363683519.76.0.514671428108.issue17478@psf.upfronthosting.co.za>
In-reply-to
Content
Tkinter's split() recursive splits bytes but not unicode strings.

>>> from tkinter import *
>>> t = Tcl()
>>> t.tk.split((b'a 2',))
(('a', '2'),)
>>> t.tk.split(('a 2',))
('a 2',)
History
Date User Action Args
2013-03-19 08:58:39serhiy.storchakasetrecipients: + serhiy.storchaka, gpolo, ezio.melotti
2013-03-19 08:58:39serhiy.storchakasetmessageid: <1363683519.76.0.514671428108.issue17478@psf.upfronthosting.co.za>
2013-03-19 08:58:39serhiy.storchakalinkissue17478 messages
2013-03-19 08:58:39serhiy.storchakacreate