mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
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
6e4975a1c7
commit
8b052751d3
3 changed files with 7 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue