mirror of
https://github.com/python/cpython.git
synced 2025-09-15 05:06:12 +00:00
Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.
This commit is contained in:
parent
d8ec464dbb
commit
2d96848c7e
3 changed files with 5 additions and 1 deletions
|
@ -200,7 +200,7 @@ class _QueryDialog(Dialog):
|
|||
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)
|
||||
|
||||
|
|
|
@ -576,6 +576,7 @@ Carl Meyer
|
|||
Mike Meyer
|
||||
Steven Miale
|
||||
Trent Mick
|
||||
Tom Middleton
|
||||
Stan Mihai
|
||||
Aristotelis Mikropoulos
|
||||
Damien Miller
|
||||
|
|
|
@ -92,6 +92,9 @@ Core and Builtins
|
|||
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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue