From: Serhiy Storchaka Date: Sat, 4 Apr 2015 09:44:30 +0000 (+0300) Subject: Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06e66108c6c71e1cc2b6a0c1d4cd8d245469632f;p=python Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool. --- 06e66108c6c71e1cc2b6a0c1d4cd8d245469632f diff --cc Misc/NEWS index 2d07fd122f,a8c7eccf7e..2c58f16ec2 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -19,8 -24,10 +19,12 @@@ Core and Builtin Library ------- + - Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always + returns bool. tkinter.BooleanVar now validates input values (accepted bool, + int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool. + +- Issue #10590: xml.sax.parseString() now supports string argument. + - Issue #23338: Fixed formatting ctypes error messages on Cygwin. Patch by Makoto Kato.