[issue19028] tkinter.tkapp.merge() fails on non-strings

2013-09-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19028] tkinter.tkapp.merge() fails on non-strings

2013-09-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5c1c67d980bb by Serhiy Storchaka in branch '3.3': Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. http://hg.python.org/cpython/rev/5c1c67d980bb -- nosy: +python-dev ___ Python tracker

[issue19028] tkinter.tkapp.merge() fails on non-strings

2013-09-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: tkinter.tkapp.merge() recursively merge Python data into Tcl string. When a subitem neither tuple, string or byte string, it calls str() on it. But then it use PyBytes_AsString() which always fails because accepts bytes instead of str. The proposed patch f