From b2817327b91274af254dc4fe391fbc488368bfeb Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 3 Nov 2013 18:24:31 +0200 Subject: Issue #19085: Fixed pixels rounding for last Tk patchlevels. --- Lib/tkinter/test/widget_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/tkinter/test/widget_tests.py') diff --git a/Lib/tkinter/test/widget_tests.py b/Lib/tkinter/test/widget_tests.py index f9910b09fa..83db28b8af 100644 --- a/Lib/tkinter/test/widget_tests.py +++ b/Lib/tkinter/test/widget_tests.py @@ -11,7 +11,7 @@ noconv = str if tcl_version < (8, 5) else False _sentinel = object() class AbstractWidgetTest: - _conv_pixels = round if tcl_version[:2] != (8, 5) else int + _conv_pixels = round _conv_pad_pixels = None wantobjects = True -- cgit v1.2.1