diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-23 07:57:40 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-23 07:57:40 (GMT) |
commit | 3bd66abb947fa658f57cc9201a59d0b96585d908 (patch) | |
tree | b763a062dd93bd02dcf0ca82c5fc133fc97d14d1 /Lib/tkinter/test/test_tkinter/test_widgets.py | |
parent | 4e1f355c0e90b7f7ebf05643a7ff5b75c5fb45ef (diff) | |
download | cpython-3bd66abb947fa658f57cc9201a59d0b96585d908.zip cpython-3bd66abb947fa658f57cc9201a59d0b96585d908.tar.gz cpython-3bd66abb947fa658f57cc9201a59d0b96585d908.tar.bz2 |
Use more precise Tcl version checks in tests.
Diffstat (limited to 'Lib/tkinter/test/test_tkinter/test_widgets.py')
-rw-r--r-- | Lib/tkinter/test/test_tkinter/test_widgets.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/test/test_tkinter/test_widgets.py b/Lib/tkinter/test/test_tkinter/test_widgets.py index 58c8ea1..8be0371 100644 --- a/Lib/tkinter/test/test_tkinter/test_widgets.py +++ b/Lib/tkinter/test/test_tkinter/test_widgets.py @@ -1040,7 +1040,7 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase): def test_paneconfigure_height(self): p, b, c = self.create2() self.check_paneconfigure(p, b, 'height', 10, 10, - stringify=tcl_version < (8, 5)) + stringify=get_tk_patchlevel() < (8, 5, 11)) self.check_paneconfigure_bad(p, b, 'height', 'bad screen distance "badValue"') @@ -1088,7 +1088,7 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase): def test_paneconfigure_width(self): p, b, c = self.create2() self.check_paneconfigure(p, b, 'width', 10, 10, - stringify=tcl_version < (8, 5)) + stringify=get_tk_patchlevel() < (8, 5, 11)) self.check_paneconfigure_bad(p, b, 'width', 'bad screen distance "badValue"') |