[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-07-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset f53cdd4e2689 by Serhiy Storchaka in branch '2.7': Issue #18101: Tcl.split() now process Unicode strings nested in a tuple as it http://hg.python.org/cpython/rev/f53cdd4e2689 New changeset 9486c07929a1 by Serhiy Storchaka in branch '3.3': Issue

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-07-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18101

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-06-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ezio, have you reviewed the main code? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18101 ___ ___

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-06-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here are patches with updated tests as Ezio suggested. -- Added file: http://bugs.python.org/file30516/tkinter_split_nested_unicode_2.patch ___ Python tracker rep...@bugs.python.org

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-06-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: Added file: http://bugs.python.org/file30517/tkinter_split_nested_unicode-2.7_2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18101 ___

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-06-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18101 ___ ___

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-06-03 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18101 ___ ___

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-05-30 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Tk.split() doesn't work with nested Unicode strings, but works with nested bytes. import tkinter t = tkinter.Tcl() t.split('a {b c}') ('a', ('b', 'c')) t.split(b'a {b c}') ('a', ('b', 'c')) t.split(('a {b c}',)) ('a {b c}',) t.split((b'a {b c}',))

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-05-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +gpolo, roger.serwy versions: +Python 2.7 Added file: http://bugs.python.org/file30427/tkinter_split_nested_unicode-2.7.patch ___ Python tracker rep...@bugs.python.org

[issue18101] Tk.split() doesn't work with nested Unicode strings

2013-05-30 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18101 ___