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 tkinter
Recipients klappnase, serhiy.storchaka, tkinter
Date 2016-10-22.22:01:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477173701.68.0.379594406028.issue28498@psf.upfronthosting.co.za>
In-reply-to
Content
Misc._configure is only used when the first Tcl command is the name of the widget.

Very probably my proposal for tk_busy_configure is a better candidate because it follows the conventions used in tkinter (it's similar to pack_configure and place_configure):
     def tk_busy_configure(self, cnf=None, **kw):
        self.tk.call(('tk', 'busy', 'configure', self._w) + self._options(cnf, kw))
History
Date User Action Args
2016-10-22 22:01:41tkintersetrecipients: + tkinter, klappnase, serhiy.storchaka
2016-10-22 22:01:41tkintersetmessageid: <1477173701.68.0.379594406028.issue28498@psf.upfronthosting.co.za>
2016-10-22 22:01:41tkinterlinkissue28498 messages
2016-10-22 22:01:41tkintercreate