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
f023ab04
Kaydet (Commit)
f023ab04
authored
Agu 30, 1994
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Dialog.py: d.num should be numeric, not string
Tkinter.py: on destroy(), remove self from master's dict of children
üst
c1be9d59
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
10 deletions
+16
-10
Dialog.py
Lib/lib-tk/Dialog.py
+6
-5
Tkinter.py
Lib/lib-tk/Tkinter.py
+2
-0
Dialog.py
Lib/tkinter/Dialog.py
+6
-5
Tkinter.py
Lib/tkinter/Tkinter.py
+2
-0
No files found.
Lib/lib-tk/Dialog.py
Dosyayı görüntüle @
f023ab04
...
...
@@ -4,11 +4,12 @@ from Tkinter import *
class
Dialog
(
Widget
):
def
__init__
(
self
,
master
=
None
,
cnf
=
{}):
Widget
.
_setup
(
self
,
master
,
cnf
)
self
.
num
=
apply
(
self
.
tk
.
call
,
(
'tk_dialog'
,
self
.
_w
,
cnf
[
'title'
],
cnf
[
'text'
],
cnf
[
'bitmap'
],
cnf
[
'default'
])
+
cnf
[
'strings'
])
self
.
num
=
self
.
tk
.
getint
(
apply
(
self
.
tk
.
call
,
(
'tk_dialog'
,
self
.
_w
,
cnf
[
'title'
],
cnf
[
'text'
],
cnf
[
'bitmap'
],
cnf
[
'default'
])
+
cnf
[
'strings'
]))
try
:
Widget
.
destroy
(
self
)
except
TclError
:
pass
def
destroy
(
self
):
pass
...
...
Lib/lib-tk/Tkinter.py
Dosyayı görüntüle @
f023ab04
...
...
@@ -679,6 +679,8 @@ class Widget(Misc, Pack, Place):
return
self
.
_w
def
destroy
(
self
):
for
c
in
self
.
children
.
values
():
c
.
destroy
()
if
self
.
master
.
children
.
has_key
(
self
.
_name
):
del
self
.
master
.
children
[
self
.
_name
]
self
.
tk
.
call
(
'destroy'
,
self
.
_w
)
def
_do
(
self
,
name
,
args
=
()):
return
apply
(
self
.
tk
.
call
,
(
self
.
_w
,
name
)
+
args
)
...
...
Lib/tkinter/Dialog.py
Dosyayı görüntüle @
f023ab04
...
...
@@ -4,11 +4,12 @@ from Tkinter import *
class
Dialog
(
Widget
):
def
__init__
(
self
,
master
=
None
,
cnf
=
{}):
Widget
.
_setup
(
self
,
master
,
cnf
)
self
.
num
=
apply
(
self
.
tk
.
call
,
(
'tk_dialog'
,
self
.
_w
,
cnf
[
'title'
],
cnf
[
'text'
],
cnf
[
'bitmap'
],
cnf
[
'default'
])
+
cnf
[
'strings'
])
self
.
num
=
self
.
tk
.
getint
(
apply
(
self
.
tk
.
call
,
(
'tk_dialog'
,
self
.
_w
,
cnf
[
'title'
],
cnf
[
'text'
],
cnf
[
'bitmap'
],
cnf
[
'default'
])
+
cnf
[
'strings'
]))
try
:
Widget
.
destroy
(
self
)
except
TclError
:
pass
def
destroy
(
self
):
pass
...
...
Lib/tkinter/Tkinter.py
Dosyayı görüntüle @
f023ab04
...
...
@@ -679,6 +679,8 @@ class Widget(Misc, Pack, Place):
return
self
.
_w
def
destroy
(
self
):
for
c
in
self
.
children
.
values
():
c
.
destroy
()
if
self
.
master
.
children
.
has_key
(
self
.
_name
):
del
self
.
master
.
children
[
self
.
_name
]
self
.
tk
.
call
(
'destroy'
,
self
.
_w
)
def
_do
(
self
,
name
,
args
=
()):
return
apply
(
self
.
tk
.
call
,
(
self
.
_w
,
name
)
+
args
)
...
...
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