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
a1db48b7
Kaydet (Commit)
a1db48b7
authored
Eki 09, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix Menu.add_command etc.
üst
d462f3dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
20 deletions
+20
-20
Tkinter.py
Lib/lib-tk/Tkinter.py
+10
-10
Tkinter.py
Lib/tkinter/Tkinter.py
+10
-10
No files found.
Lib/lib-tk/Tkinter.py
Dosyayı görüntüle @
a1db48b7
...
...
@@ -1105,16 +1105,16 @@ class Menu(Widget):
def
add
(
self
,
itemType
,
cnf
=
{},
**
kw
):
apply
(
self
.
tk
.
call
,
(
self
.
_w
,
'add'
,
itemType
)
+
self
.
_options
(
cnf
,
kw
))
def
add_cascade
(
self
,
cnf
=
{}):
self
.
add
(
'cascade'
,
cnf
)
def
add_checkbutton
(
self
,
cnf
=
{}):
self
.
add
(
'checkbutton'
,
cnf
)
def
add_command
(
self
,
cnf
=
{}):
self
.
add
(
'command'
,
cnf
)
def
add_radiobutton
(
self
,
cnf
=
{}):
self
.
add
(
'radiobutton'
,
cnf
)
def
add_separator
(
self
,
cnf
=
{}):
self
.
add
(
'separator'
,
cnf
)
def
add_cascade
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'cascade'
,
cnf
or
kw
)
def
add_checkbutton
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'checkbutton'
,
cnf
or
kw
)
def
add_command
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'command'
,
cnf
or
kw
)
def
add_radiobutton
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'radiobutton'
,
cnf
or
kw
)
def
add_separator
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'separator'
,
cnf
or
kw
)
def
delete
(
self
,
index1
,
index2
=
None
):
self
.
tk
.
call
(
self
.
_w
,
'delete'
,
index1
,
index2
)
def
entryconfig
(
self
,
index
,
cnf
=
{},
**
kw
):
...
...
Lib/tkinter/Tkinter.py
Dosyayı görüntüle @
a1db48b7
...
...
@@ -1105,16 +1105,16 @@ class Menu(Widget):
def
add
(
self
,
itemType
,
cnf
=
{},
**
kw
):
apply
(
self
.
tk
.
call
,
(
self
.
_w
,
'add'
,
itemType
)
+
self
.
_options
(
cnf
,
kw
))
def
add_cascade
(
self
,
cnf
=
{}):
self
.
add
(
'cascade'
,
cnf
)
def
add_checkbutton
(
self
,
cnf
=
{}):
self
.
add
(
'checkbutton'
,
cnf
)
def
add_command
(
self
,
cnf
=
{}):
self
.
add
(
'command'
,
cnf
)
def
add_radiobutton
(
self
,
cnf
=
{}):
self
.
add
(
'radiobutton'
,
cnf
)
def
add_separator
(
self
,
cnf
=
{}):
self
.
add
(
'separator'
,
cnf
)
def
add_cascade
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'cascade'
,
cnf
or
kw
)
def
add_checkbutton
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'checkbutton'
,
cnf
or
kw
)
def
add_command
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'command'
,
cnf
or
kw
)
def
add_radiobutton
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'radiobutton'
,
cnf
or
kw
)
def
add_separator
(
self
,
cnf
=
{}
,
**
kw
):
self
.
add
(
'separator'
,
cnf
or
kw
)
def
delete
(
self
,
index1
,
index2
=
None
):
self
.
tk
.
call
(
self
.
_w
,
'delete'
,
index1
,
index2
)
def
entryconfig
(
self
,
index
,
cnf
=
{},
**
kw
):
...
...
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