[issue2906] tkinter, assorted fixes

2008-06-03 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Applied in trunk, 25-maint and 3k. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue2906] tkinter, assorted fixes

2008-06-02 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: I found a case where the support for values under list or tuple would fail, when the contents contain spaces it needs a proper tcl formatting. I'm attaching a new patch that fixes this. -- resolution: accepted -> status: closed -> op

[issue2906] tkinter, assorted fixes

2008-05-29 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Committed as r63776, r63777 (3k). -- nosy: +georg.brandl resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue2906] tkinter, assorted fixes

2008-05-25 Thread Guilherme Polo
Changes by Guilherme Polo <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file10362/fixes_tkinter.diff __ Tracker <[EMAIL PROTECTED]> __ ___ P

[issue2906] tkinter, assorted fixes

2008-05-25 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: I found a problem in the previous patch, new one added. This patch now only considers tuple and list as possible option value that should be joined, and the items inside the list or tuple should be either a string or integer, otherwise it does

[issue2906] tkinter, assorted fixes

2008-05-18 Thread Guilherme Polo
New submission from Guilherme Polo <[EMAIL PROTECTED]>: This patch adds support for Tk options that could be passed as a list or tuple, for example. I didn't investigate if there are any of these in tk 8.4, but tk 8.5 has this (the padding option for Ttk Label, for example). Note that this should