bpo-30981: temporarity skip failing IDLE test class (#2798) · python/cpython@7c5798e (original) (raw)

`@@ -180,7 +180,7 @@ def create_page_font_tab(self):

`

180

180

` frame_font_param: Frame

`

181

181

` font_size_title: Label

`

182

182

` (*)opt_menu_font_size: DynOptionMenu - font_size

`

183

``

`-

bold_toggle: Checkbutton - font_bold

`

``

183

`+

(*)bold_toggle: Checkbutton - font_bold

`

184

184

` frame_font_sample: Frame

`

185

185

` (*)font_sample: Label

`

186

186

` frame_indent: LabelFrame

`

`@@ -218,7 +218,7 @@ def create_page_font_tab(self):

`

218

218

`font_size_title = Label(frame_font_param, text='Size :')

`

219

219

`self.opt_menu_font_size = DynOptionMenu(

`

220

220

`frame_font_param, self.font_size, None, command=self.set_samples)

`

221

``

`-

bold_toggle = Checkbutton(

`

``

221

`+

self.bold_toggle = Checkbutton(

`

222

222

`frame_font_param, variable=self.font_bold, onvalue=1,

`

223

223

`offvalue=0, text='Bold', command=self.set_samples)

`

224

224

`frame_font_sample = Frame(frame_font, relief=SOLID, borderwidth=1)

`

`@@ -246,7 +246,7 @@ def create_page_font_tab(self):

`

246

246

`scroll_font.pack(side=LEFT, fill=Y)

`

247

247

`font_size_title.pack(side=LEFT, anchor=W)

`

248

248

`self.opt_menu_font_size.pack(side=LEFT, anchor=W)

`

249

``

`-

bold_toggle.pack(side=LEFT, anchor=W, padx=20)

`

``

249

`+

self.bold_toggle.pack(side=LEFT, anchor=W, padx=20)

`

250

250

`frame_font_sample.pack(side=TOP, padx=5, pady=5, expand=TRUE, fill=BOTH)

`

251

251

`self.font_sample.pack(expand=TRUE, fill=BOTH)

`

252

252

`# frame_indent

`