klappnase added the comment: 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)) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28498> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com