summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/tkinter/test')
-rw-r--r--Lib/tkinter/test/test_ttk/test_extensions.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_extensions.py b/Lib/tkinter/test/test_ttk/test_extensions.py
index 438d21d..cddd1f2 100644
--- a/Lib/tkinter/test/test_ttk/test_extensions.py
+++ b/Lib/tkinter/test/test_ttk/test_extensions.py
@@ -301,6 +301,19 @@ class OptionMenuTest(AbstractTkTest, unittest.TestCase):
optmenu.destroy()
optmenu2.destroy()
+ def test_trace_variable(self):
+ # prior to bpo45160, tracing a variable would cause the callback to be made twice
+ success = []
+ items = ('a', 'b', 'c')
+ textvar = tkinter.StringVar(self.root)
+ def cb_test(*args):
+ self.assertEqual(textvar.get(), items[1])
+ success.append(True)
+ optmenu = ttk.OptionMenu(self.root, textvar, "a", *items)
+ textvar.trace("w", cb_test)
+ optmenu['menu'].invoke(1)
+ self.assertEqual(success, [True])
+
class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):