[issue17478] Tkinter's split() inconsistent for bytes and unicode strings

2013-08-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Tk.split() doesn't work with nested Unicode strings ___ Python tracker ___

[issue17478] Tkinter's split() inconsistent for bytes and unicode strings

2013-03-19 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: 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',) -- components: Tkinter, Unicode messages: 184622 nosy: ezio.melotti,