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-23.09:38:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477215492.36.0.836713647971.issue28498@psf.upfronthosting.co.za>
In-reply-to
Content
Ok. Maybe the bug is here:

   Misc.getboolean()

This is the required change:
    def getboolean(self, s):
        """Return a boolean value for Tcl boolean values true and false given as parameter."""
        return bool(self.tk.getboolean(s))
History
Date User Action Args
2016-10-23 09:38:12tkintersetrecipients: + tkinter, klappnase, serhiy.storchaka
2016-10-23 09:38:12tkintersetmessageid: <1477215492.36.0.836713647971.issue28498@psf.upfronthosting.co.za>
2016-10-23 09:38:12tkinterlinkissue28498 messages
2016-10-23 09:38:12tkintercreate