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
6b98ce23
Kaydet (Commit)
6b98ce23
authored
May 17, 2016
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27044: stop test_idle from leaking by deleting callbacks.
üst
b461791b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
configDialog.py
Lib/idlelib/configDialog.py
+11
-0
test_configdialog.py
Lib/idlelib/idle_test/test_configdialog.py
+1
-0
No files found.
Lib/idlelib/configDialog.py
Dosyayı görüntüle @
6b98ce23
...
...
@@ -483,6 +483,17 @@ class ConfigDialog(Toplevel):
self
.
autoSave
.
trace_variable
(
'w'
,
self
.
VarChanged_autoSave
)
self
.
encoding
.
trace_variable
(
'w'
,
self
.
VarChanged_encoding
)
def
remove_var_callbacks
(
self
):
"Remove callbacks to prevent memory leaks."
for
var
in
(
self
.
fontSize
,
self
.
fontName
,
self
.
fontBold
,
self
.
spaceNum
,
self
.
colour
,
self
.
builtinTheme
,
self
.
customTheme
,
self
.
themeIsBuiltin
,
self
.
highlightTarget
,
self
.
keyBinding
,
self
.
builtinKeys
,
self
.
customKeys
,
self
.
keysAreBuiltin
,
self
.
winWidth
,
self
.
winHeight
,
self
.
startupEdit
,
self
.
autoSave
,
self
.
encoding
,):
var
.
trace_vdelete
(
'w'
,
var
.
trace_vinfo
()[
0
][
1
])
def
VarChanged_font
(
self
,
*
params
):
'''When one font attribute changes, save them all, as they are
not independent from each other. In particular, when we are
...
...
Lib/idlelib/idle_test/test_configdialog.py
Dosyayı görüntüle @
6b98ce23
...
...
@@ -25,6 +25,7 @@ class ConfigDialogTest(unittest.TestCase):
def
test_dialog
(
self
):
d
=
ConfigDialog
(
self
.
root
,
'Test'
,
_utest
=
True
)
d
.
remove_var_callbacks
()
d
.
destroy
()
...
...
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