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
7c5798eb
Kaydet (Commit)
7c5798eb
authored
Tem 21, 2017
tarafından
Terry Jan Reedy
Kaydeden (comit)
GitHub
Tem 21, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30981: temporarity skip failing IDLE test class (#2798)
üst
d0969d69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
configdialog.py
Lib/idlelib/configdialog.py
+3
-3
test_configdialog.py
Lib/idlelib/idle_test/test_configdialog.py
+2
-0
No files found.
Lib/idlelib/configdialog.py
Dosyayı görüntüle @
7c5798eb
...
...
@@ -180,7 +180,7 @@ class ConfigDialog(Toplevel):
frame_font_param: Frame
font_size_title: Label
(*)opt_menu_font_size: DynOptionMenu - font_size
bold_toggle: Checkbutton - font_bold
(*)
bold_toggle: Checkbutton - font_bold
frame_font_sample: Frame
(*)font_sample: Label
frame_indent: LabelFrame
...
...
@@ -218,7 +218,7 @@ class ConfigDialog(Toplevel):
font_size_title
=
Label
(
frame_font_param
,
text
=
'Size :'
)
self
.
opt_menu_font_size
=
DynOptionMenu
(
frame_font_param
,
self
.
font_size
,
None
,
command
=
self
.
set_samples
)
bold_toggle
=
Checkbutton
(
self
.
bold_toggle
=
Checkbutton
(
frame_font_param
,
variable
=
self
.
font_bold
,
onvalue
=
1
,
offvalue
=
0
,
text
=
'Bold'
,
command
=
self
.
set_samples
)
frame_font_sample
=
Frame
(
frame_font
,
relief
=
SOLID
,
borderwidth
=
1
)
...
...
@@ -246,7 +246,7 @@ class ConfigDialog(Toplevel):
scroll_font
.
pack
(
side
=
LEFT
,
fill
=
Y
)
font_size_title
.
pack
(
side
=
LEFT
,
anchor
=
W
)
self
.
opt_menu_font_size
.
pack
(
side
=
LEFT
,
anchor
=
W
)
bold_toggle
.
pack
(
side
=
LEFT
,
anchor
=
W
,
padx
=
20
)
self
.
bold_toggle
.
pack
(
side
=
LEFT
,
anchor
=
W
,
padx
=
20
)
frame_font_sample
.
pack
(
side
=
TOP
,
padx
=
5
,
pady
=
5
,
expand
=
TRUE
,
fill
=
BOTH
)
self
.
font_sample
.
pack
(
expand
=
TRUE
,
fill
=
BOTH
)
# frame_indent
...
...
Lib/idlelib/idle_test/test_configdialog.py
Dosyayı görüntüle @
7c5798eb
...
...
@@ -45,6 +45,7 @@ def tearDownModule():
del
root
@unittest.skip
(
"skip failing tests until fixed"
)
class
FontTabTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
@@ -78,6 +79,7 @@ class FontTabTest(unittest.TestCase):
d
.
set_samples
=
Func
()
d
.
bold_toggle
.
toggle
()
self
.
assertEqual
(
d
.
set_samples
.
called
,
1
)
del
d
.
set_samples
def
test_set_samples
(
self
):
d
=
dialog
...
...
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