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
38ebdf52
Kaydet (Commit)
38ebdf52
authored
Haz 07, 2014
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #21682: Replace EditorWindow with mock to eliminate memory leaks.
Patch by Saimadhav Heblikar.
üst
4a3f135c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
test_autocomplete.py
Lib/idlelib/idle_test/test_autocomplete.py
+10
-3
No files found.
Lib/idlelib/idle_test/test_autocomplete.py
Dosyayı görüntüle @
38ebdf52
...
...
@@ -5,7 +5,6 @@ from tkinter import Tk, Text, TclError
import
idlelib.AutoComplete
as
ac
import
idlelib.AutoCompleteWindow
as
acw
import
idlelib.macosxSupport
as
mac
from
idlelib.EditorWindow
import
EditorWindow
from
idlelib.idle_test.mock_idle
import
Func
from
idlelib.idle_test.mock_tk
import
Event
...
...
@@ -13,6 +12,14 @@ class AutoCompleteWindow:
def
complete
():
return
class
DummyEditwin
:
def
__init__
(
self
,
root
,
text
):
self
.
root
=
root
self
.
text
=
text
self
.
indentwidth
=
8
self
.
tabwidth
=
8
self
.
context_use_ps1
=
True
class
AutoCompleteTest
(
unittest
.
TestCase
):
...
...
@@ -21,8 +28,8 @@ class AutoCompleteTest(unittest.TestCase):
requires
(
'gui'
)
cls
.
root
=
Tk
()
mac
.
setupApp
(
cls
.
root
,
None
)
cls
.
editor
=
EditorWindow
(
root
=
cls
.
root
)
cls
.
text
=
cls
.
editor
.
text
cls
.
text
=
Text
(
cls
.
root
)
cls
.
editor
=
DummyEditwin
(
cls
.
root
,
cls
.
text
)
@classmethod
def
tearDownClass
(
cls
):
...
...
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