cpython (3.2): Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter
http://hg.python.org/cpython/rev/fd5166fdb978 changeset: 78335:fd5166fdb978 branch: 3.2 parent: 78331:eb0af7f6ea6d user: Andrew Svetlov <andrew.svetlov@gmail.com> date: Mon Jul 30 19:59:53 2012 +0300 summary: Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. files: Lib/tkinter/simpledialog.py | 2 +- Misc/ACKS | 1 + Misc/NEWS | 3 +++ 3 files changed, 5 insertions(+), 1 deletions(-) diff --git a/Lib/tkinter/simpledialog.py b/Lib/tkinter/simpledialog.py --- a/Lib/tkinter/simpledialog.py +++ b/Lib/tkinter/simpledialog.py @@ -282,7 +282,7 @@ self.entry = Entry(master, name="entry") self.entry.grid(row=1, padx=5, sticky=W+E) - if self.initialvalue: + if self.initialvalue is not None: self.entry.insert(0, self.initialvalue) self.entry.select_range(0, END) diff --git a/Misc/ACKS b/Misc/ACKS --- a/Misc/ACKS +++ b/Misc/ACKS @@ -633,6 +633,7 @@ Mike Meyer Steven Miale Trent Mick +Tom Middleton Stan Mihai Stefan Mihaila Aristotelis Mikropoulos diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -98,6 +98,9 @@ Library ------- +- Issue #12288: Consider '0' and '0.0' as valid initialvalue + for tkinter SimpleDialog. + - Issue #15489: Add a __sizeof__ implementation for BytesIO objects. Patch by Serhiy Storchaka. -- Repository URL: http://hg.python.org/cpython
participants (1)
-
andrew.svetlov