Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
504ba313
Kaydet (Commit)
504ba313
authored
Tem 30, 2012
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.
üst
754d5ef8
1fb0e3f3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
simpledialog.py
Lib/tkinter/simpledialog.py
+1
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tkinter/simpledialog.py
Dosyayı görüntüle @
504ba313
...
@@ -282,7 +282,7 @@ class _QueryDialog(Dialog):
...
@@ -282,7 +282,7 @@ class _QueryDialog(Dialog):
self
.
entry
=
Entry
(
master
,
name
=
"entry"
)
self
.
entry
=
Entry
(
master
,
name
=
"entry"
)
self
.
entry
.
grid
(
row
=
1
,
padx
=
5
,
sticky
=
W
+
E
)
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
.
insert
(
0
,
self
.
initialvalue
)
self
.
entry
.
select_range
(
0
,
END
)
self
.
entry
.
select_range
(
0
,
END
)
...
...
Misc/ACKS
Dosyayı görüntüle @
504ba313
...
@@ -700,6 +700,7 @@ Piotr Meyer
...
@@ -700,6 +700,7 @@ Piotr Meyer
Alexis Métaireau
Alexis Métaireau
Steven Miale
Steven Miale
Trent Mick
Trent Mick
Tom Middleton
Stan Mihai
Stan Mihai
Stefan Mihaila
Stefan Mihaila
Aristotelis Mikropoulos
Aristotelis Mikropoulos
...
...
Misc/NEWS
Dosyayı görüntüle @
504ba313
...
@@ -339,6 +339,9 @@ Core and Builtins
...
@@ -339,6 +339,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #12288: Consider '
0
' and '
0.0
' as valid initialvalue
for tkinter SimpleDialog.
- Issue #15489: Add a __sizeof__ implementation for BytesIO objects.
- Issue #15489: Add a __sizeof__ implementation for BytesIO objects.
Patch by Serhiy Storchaka.
Patch by Serhiy Storchaka.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment