diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-03-16 10:51:28 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-03-16 10:51:28 (GMT) |
commit | a6d9abfc9e2c91c2d1cf6d02106d6a07f50b5ed5 (patch) | |
tree | bad2e2bbeda3affb70b19ddda32ecc2ba0b94f0f /Lib | |
parent | c33b902ebb0e124061ed3213409dc37cffebced0 (diff) | |
download | cpython-a6d9abfc9e2c91c2d1cf6d02106d6a07f50b5ed5.zip cpython-a6d9abfc9e2c91c2d1cf6d02106d6a07f50b5ed5.tar.gz cpython-a6d9abfc9e2c91c2d1cf6d02106d6a07f50b5ed5.tar.bz2 |
Merged revisions 78988 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78988 | matthias.klose | 2010-03-16 11:48:52 +0100 (Tue, 16 Mar 2010) | 3 lines
- Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox
with Tcl/Tk-8.5.
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/tkinter/messagebox.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/tkinter/messagebox.py b/Lib/tkinter/messagebox.py index c934956..5c35d5a 100644 --- a/Lib/tkinter/messagebox.py +++ b/Lib/tkinter/messagebox.py @@ -70,11 +70,13 @@ def _show(title=None, message=None, _icon=None, _type=None, **options): if title: options["title"] = title if message: options["message"] = message res = Message(**options).show() - # In some Tcl installations, Tcl converts yes/no into a boolean + # In some Tcl installations, yes/no is converted into a boolean. if isinstance(res, bool): - if res: return YES + if res: + return YES return NO - return res + # In others we get a Tcl_Obj. + return str(res) def showinfo(title=None, message=None, **options): "Show an info message" |