File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ def body(self, master):
282282 self .entry = Entry (master , name = "entry" )
283283 self .entry .grid (row = 1 , padx = 5 , sticky = W + E )
284284
285- if self .initialvalue :
285+ if self .initialvalue is not None :
286286 self .entry .insert (0 , self .initialvalue )
287287 self .entry .select_range (0 , END )
288288
Original file line number Diff line number Diff line change @@ -633,6 +633,7 @@ Carl Meyer
633633Mike Meyer
634634Steven Miale
635635Trent Mick
636+ Tom Middleton
636637Stan Mihai
637638Stefan Mihaila
638639Aristotelis Mikropoulos
Original file line number Diff line number Diff line change @@ -98,6 +98,9 @@ Core and Builtins
9898Library
9999-------
100100
101+ - Issue #12288: Consider '0' and '0.0' as valid initialvalue
102+ for tkinter SimpleDialog.
103+
101104- Issue #15489: Add a __sizeof__ implementation for BytesIO objects.
102105 Patch by Serhiy Storchaka.
103106
You can’t perform that action at this time.
0 commit comments