commit | 68f518ce4a700854d3c9b0fef145b9af79883df9 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Nov 03 18:24:04 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sun Nov 03 18:24:04 2013 +0200 |
tree | 48eac42aeeea376309ff0836d8b35a83d2aa01c3 | |
parent | 31b9c845d315d107c18384a17991010ca54b36f7 [diff] |
Issue #19085: Fixed pixels rounding for last Tk patchlevels.
diff --git a/Lib/lib-tk/test/widget_tests.py b/Lib/lib-tk/test/widget_tests.py index a4fafff..7402d91 100644 --- a/Lib/lib-tk/test/widget_tests.py +++ b/Lib/lib-tk/test/widget_tests.py
@@ -14,7 +14,7 @@ _sentinel = object() class AbstractWidgetTest(object): - _conv_pixels = staticmethod(int_round if tcl_version[:2] != (8, 5) else int) + _conv_pixels = staticmethod(int_round) _conv_pad_pixels = None wantobjects = True