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
00b1e0f7
Kaydet (Commit)
00b1e0f7
authored
Eyl 01, 2016
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27922: IDLE tests no longer flash tk widgets.
üst
c7bab7cb
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
5 deletions
+13
-5
test_configdialog.py
Lib/idlelib/idle_test/test_configdialog.py
+1
-0
test_editmenu.py
Lib/idlelib/idle_test/test_editmenu.py
+1
-0
test_hyperparser.py
Lib/idlelib/idle_test/test_hyperparser.py
+1
-0
test_idlehistory.py
Lib/idlelib/idle_test/test_idlehistory.py
+1
-0
test_textview.py
Lib/idlelib/idle_test/test_textview.py
+7
-5
test_widgetredir.py
Lib/idlelib/idle_test/test_widgetredir.py
+2
-0
No files found.
Lib/idlelib/idle_test/test_configdialog.py
Dosyayı görüntüle @
00b1e0f7
...
@@ -15,6 +15,7 @@ class ConfigDialogTest(unittest.TestCase):
...
@@ -15,6 +15,7 @@ class ConfigDialogTest(unittest.TestCase):
@classmethod
@classmethod
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
cls
.
root
=
Tk
()
cls
.
root
=
Tk
()
cls
.
root
.
withdraw
()
macosx
.
_initializeTkVariantTests
(
cls
.
root
)
macosx
.
_initializeTkVariantTests
(
cls
.
root
)
@classmethod
@classmethod
...
...
Lib/idlelib/idle_test/test_editmenu.py
Dosyayı görüntüle @
00b1e0f7
...
@@ -16,6 +16,7 @@ class PasteTest(unittest.TestCase):
...
@@ -16,6 +16,7 @@ class PasteTest(unittest.TestCase):
@classmethod
@classmethod
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
cls
.
root
=
root
=
tk
.
Tk
()
cls
.
root
=
root
=
tk
.
Tk
()
root
.
withdraw
()
PyShell
.
fix_x11_paste
(
root
)
PyShell
.
fix_x11_paste
(
root
)
cls
.
text
=
tk
.
Text
(
root
)
cls
.
text
=
tk
.
Text
(
root
)
cls
.
entry
=
tk
.
Entry
(
root
)
cls
.
entry
=
tk
.
Entry
(
root
)
...
...
Lib/idlelib/idle_test/test_hyperparser.py
Dosyayı görüntüle @
00b1e0f7
...
@@ -37,6 +37,7 @@ class HyperParserTest(unittest.TestCase):
...
@@ -37,6 +37,7 @@ class HyperParserTest(unittest.TestCase):
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
requires
(
'gui'
)
requires
(
'gui'
)
cls
.
root
=
Tk
()
cls
.
root
=
Tk
()
cls
.
root
.
withdraw
()
cls
.
text
=
Text
(
cls
.
root
)
cls
.
text
=
Text
(
cls
.
root
)
cls
.
editwin
=
DummyEditwin
(
cls
.
text
)
cls
.
editwin
=
DummyEditwin
(
cls
.
text
)
...
...
Lib/idlelib/idle_test/test_idlehistory.py
Dosyayı görüntüle @
00b1e0f7
...
@@ -68,6 +68,7 @@ class FetchTest(unittest.TestCase):
...
@@ -68,6 +68,7 @@ class FetchTest(unittest.TestCase):
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
requires
(
'gui'
)
requires
(
'gui'
)
cls
.
root
=
tk
.
Tk
()
cls
.
root
=
tk
.
Tk
()
cls
.
root
.
withdraw
()
def
setUp
(
self
):
def
setUp
(
self
):
self
.
text
=
text
=
TextWrapper
(
self
.
root
)
self
.
text
=
text
=
TextWrapper
(
self
.
root
)
...
...
Lib/idlelib/idle_test/test_textview.py
Dosyayı görüntüle @
00b1e0f7
...
@@ -20,15 +20,16 @@ from idlelib.idle_test.mock_tk import Mbox
...
@@ -20,15 +20,16 @@ from idlelib.idle_test.mock_tk import Mbox
def
setUpModule
():
def
setUpModule
():
global
root
global
root
root
=
Tk
()
root
=
Tk
()
root
.
withdraw
()
def
tearDownModule
():
def
tearDownModule
():
global
root
global
root
root
.
update_idletasks
()
root
.
update_idletasks
()
root
.
destroy
()
#
pyflakes falsely sees root as undefined
root
.
destroy
()
#
Pyflakes falsely sees root as undefined.
del
root
del
root
class
TV
(
tv
.
TextViewer
):
#
used by TextViewTest
class
TV
(
tv
.
TextViewer
):
#
Used in TextViewTest.
transient
=
Func
()
transient
=
Func
()
grab_set
=
Func
()
grab_set
=
Func
()
wait_window
=
Func
()
wait_window
=
Func
()
...
@@ -59,8 +60,8 @@ class TextViewTest(unittest.TestCase):
...
@@ -59,8 +60,8 @@ class TextViewTest(unittest.TestCase):
view
.
destroy
=
Func
()
view
.
destroy
=
Func
()
view
.
Ok
()
view
.
Ok
()
self
.
assertTrue
(
view
.
destroy
.
called
)
self
.
assertTrue
(
view
.
destroy
.
called
)
del
view
.
destroy
#
unmask real function
del
view
.
destroy
#
Unmask real function.
view
.
destroy
view
.
destroy
()
class
textviewTest
(
unittest
.
TestCase
):
class
textviewTest
(
unittest
.
TestCase
):
...
@@ -76,9 +77,10 @@ class textviewTest(unittest.TestCase):
...
@@ -76,9 +77,10 @@ class textviewTest(unittest.TestCase):
del
cls
.
orig_mbox
del
cls
.
orig_mbox
def
test_view_text
(
self
):
def
test_view_text
(
self
):
# If modal True,
tkinter will error with 'can't invoke "event" command'
# If modal True,
get tk error 'can't invoke "event" command'.
view
=
tv
.
view_text
(
root
,
'Title'
,
'test text'
,
modal
=
False
)
view
=
tv
.
view_text
(
root
,
'Title'
,
'test text'
,
modal
=
False
)
self
.
assertIsInstance
(
view
,
tv
.
TextViewer
)
self
.
assertIsInstance
(
view
,
tv
.
TextViewer
)
view
.
Ok
()
def
test_view_file
(
self
):
def
test_view_file
(
self
):
test_dir
=
os
.
path
.
dirname
(
__file__
)
test_dir
=
os
.
path
.
dirname
(
__file__
)
...
...
Lib/idlelib/idle_test/test_widgetredir.py
Dosyayı görüntüle @
00b1e0f7
...
@@ -15,6 +15,7 @@ class InitCloseTest(unittest.TestCase):
...
@@ -15,6 +15,7 @@ class InitCloseTest(unittest.TestCase):
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
requires
(
'gui'
)
requires
(
'gui'
)
cls
.
root
=
Tk
()
cls
.
root
=
Tk
()
cls
.
root
.
withdraw
()
cls
.
text
=
Text
(
cls
.
root
)
cls
.
text
=
Text
(
cls
.
root
)
@classmethod
@classmethod
...
@@ -44,6 +45,7 @@ class WidgetRedirectorTest(unittest.TestCase):
...
@@ -44,6 +45,7 @@ class WidgetRedirectorTest(unittest.TestCase):
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
requires
(
'gui'
)
requires
(
'gui'
)
cls
.
root
=
Tk
()
cls
.
root
=
Tk
()
cls
.
root
.
withdraw
()
cls
.
text
=
Text
(
cls
.
root
)
cls
.
text
=
Text
(
cls
.
root
)
@classmethod
@classmethod
...
...
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