bpo-41384: Raise TclError in tkinter.OptionMenu (GH-21601)
... when an unknown option is passed. TypeError was being raised because a 2to3 fix was missing.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
(cherry picked from commit f1d40f941a
)
Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
parent
33cebe0b9a
commit
104adedf64
|
@ -3963,7 +3963,7 @@ class OptionMenu(Menubutton):
|
|||
if 'command' in kwargs:
|
||||
del kwargs['command']
|
||||
if kwargs:
|
||||
raise TclError('unknown option -'+kwargs.keys()[0])
|
||||
raise TclError('unknown option -'+next(iter(kwargs)))
|
||||
menu.add_command(label=value,
|
||||
command=_setit(variable, value, callback))
|
||||
for v in values:
|
||||
|
|
|
@ -307,6 +307,10 @@ class OptionMenuTest(MenubuttonTest, unittest.TestCase):
|
|||
def create(self, default='b', values=('a', 'b', 'c'), **kwargs):
|
||||
return tkinter.OptionMenu(self.root, None, default, *values, **kwargs)
|
||||
|
||||
def test_bad_kwarg(self):
|
||||
with self.assertRaisesRegex(TclError, r"^unknown option -image$"):
|
||||
tkinter.OptionMenu(self.root, None, 'b', image='')
|
||||
|
||||
|
||||
@add_standard_options(IntegerSizeTests, StandardOptionsTests)
|
||||
class EntryTest(AbstractWidgetTest, unittest.TestCase):
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Raise TclError instead of TypeError when an unknown option is passed to
|
||||
tkinter.OptionMenu.
|
Loading…
Reference in New Issue