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 klappnase
Recipients klappnase, serhiy.storchaka, tkinter
Date 2016-10-21.23:40:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477093230.56.0.625587275765.issue28498@psf.upfronthosting.co.za>
In-reply-to
Content
Oops, just made a quick test with Python3, and found that I had missed that types.StringType is no longer present. So to be compatible with Python3 the busy_configure() func ought to look like:

    def busy_configure(self, cnf=None, **kw):
        if kw:
            cnf = _cnfmerge((cnf, kw))
        elif cnf:
            cnf = _cnfmerge(cnf)
        if cnf is None:
            return(self._getconfigure(
                        'tk', 'busy', 'configure', self._w))
        if isinstance(cnf, str):
            return(self._getconfigure1(
                        'tk', 'busy', 'configure', self._w, '-'+cnf))
        self.tk.call((
            'tk', 'busy', 'configure', self._w) + self._options(cnf))
History
Date User Action Args
2016-10-21 23:40:30klappnasesetrecipients: + klappnase, serhiy.storchaka, tkinter
2016-10-21 23:40:30klappnasesetmessageid: <1477093230.56.0.625587275765.issue28498@psf.upfronthosting.co.za>
2016-10-21 23:40:30klappnaselinkissue28498 messages
2016-10-21 23:40:30klappnasecreate