mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-30981: temporarity skip failing IDLE test class (#2798)
This commit is contained in:
parent
d0969d6924
commit
7c5798ebfa
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue