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 rafe.kettler
Recipients eric.araujo, gpolo, rafe.kettler
Date 2010-10-24.20:53:16
SpamBayes Score 1.1055078e-09
Marked as misclassified No
Message-id <1287953612.17.0.0100653900591.issue10171@psf.upfronthosting.co.za>
In-reply-to
Content
I haven't had a chance to look too deeply into the source, but it appears (at least in Python 2.7) that the problem has something to do with the commands that the classes in tkMessageBox and tkColorChooser pass to tk.call().

The Message class in tkMessageBox, the Chooser class in tkColorChooser, and the various dialog classes in tkFileDialog all subclass Dialog, which is defined in tkCommonDialog.

Since the dialogs in tkFileDialog have the right buttons, there's probably nothing wrong with the Dialog superclass. However, Chooser and Message both define their own command variables (tk_chooseColor and tk_messageBox, respectively) that are then passed to a Frame's tk.call method.

So, when I get an extra minute I'll go in and see what might be going on with tk_chooseColor and tk_messageBox.
History
Date User Action Args
2010-10-24 20:53:32rafe.kettlersetrecipients: + rafe.kettler, gpolo, eric.araujo
2010-10-24 20:53:32rafe.kettlersetmessageid: <1287953612.17.0.0100653900591.issue10171@psf.upfronthosting.co.za>
2010-10-24 20:53:16rafe.kettlerlinkissue10171 messages
2010-10-24 20:53:16rafe.kettlercreate