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 terry.reedy
Recipients serhiy.storchaka, terry.reedy
Date 2015-09-26.03:42:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443238967.21.0.607203124317.issue25237@psf.upfronthosting.co.za>
In-reply-to
Content
Side issue: Dialog has this:
        # we need a dummy widget to properly process the options
        # (at least as long as we use Tkinter 1.63)
        w = Frame(self.master)

Do you know what 'Tkinter 1.63' refers to?  In 2.7, Tkinter.__version__ is '$Revision: 81008 $'.  If self.master is not None, I would expect that it can be used in
            s = w.tk.call(self.command, *w._options(self.options))
            s = self._fixresult(w, s)
History
Date User Action Args
2015-09-26 03:42:47terry.reedysetrecipients: + terry.reedy, serhiy.storchaka
2015-09-26 03:42:47terry.reedysetmessageid: <1443238967.21.0.607203124317.issue25237@psf.upfronthosting.co.za>
2015-09-26 03:42:47terry.reedylinkissue25237 messages
2015-09-26 03:42:46terry.reedycreate