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
14646337
Kaydet (Commit)
14646337
authored
Agu 10, 2008
tarafından
Robert Schuppenies
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to
menu entries were not deleted.
üst
9fc5631b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
Tkinter.py
Lib/lib-tk/Tkinter.py
+10
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/lib-tk/Tkinter.py
Dosyayı görüntüle @
14646337
...
@@ -2659,7 +2659,17 @@ class Menu(Widget):
...
@@ -2659,7 +2659,17 @@ class Menu(Widget):
self
.
insert
(
index
,
'separator'
,
cnf
or
kw
)
self
.
insert
(
index
,
'separator'
,
cnf
or
kw
)
def
delete
(
self
,
index1
,
index2
=
None
):
def
delete
(
self
,
index1
,
index2
=
None
):
"""Delete menu items between INDEX1 and INDEX2 (not included)."""
"""Delete menu items between INDEX1 and INDEX2 (not included)."""
if
index2
is
None
:
index2
=
index1
cmds
=
[]
for
i
in
range
(
self
.
index
(
index1
),
self
.
index
(
index2
)
+
1
):
if
'command'
in
self
.
entryconfig
(
i
):
c
=
str
(
self
.
entrycget
(
i
,
'command'
))
if
c
in
self
.
_tclCommands
:
cmds
.
append
(
c
)
self
.
tk
.
call
(
self
.
_w
,
'delete'
,
index1
,
index2
)
self
.
tk
.
call
(
self
.
_w
,
'delete'
,
index1
,
index2
)
for
c
in
cmds
:
self
.
deletecommand
(
c
)
def
entrycget
(
self
,
index
,
option
):
def
entrycget
(
self
,
index
,
option
):
"""Return the resource value of an menu item for OPTION at INDEX."""
"""Return the resource value of an menu item for OPTION at INDEX."""
return
self
.
tk
.
call
(
self
.
_w
,
'entrycget'
,
index
,
'-'
+
option
)
return
self
.
tk
.
call
(
self
.
_w
,
'entrycget'
,
index
,
'-'
+
option
)
...
...
Misc/NEWS
Dosyayı görüntüle @
14646337
...
@@ -41,6 +41,9 @@ Core and Builtins
...
@@ -41,6 +41,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated to
menu entries were not deleted.
- Copied the implementation of reduce() to _functools.reduce() to have a
- Copied the implementation of reduce() to _functools.reduce() to have a
version that did not raise a DeprecationWarning under -3.
version that did not raise a DeprecationWarning under -3.
...
...
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