Issue #19085: Fixed pixels rounding for last Tk patchlevels.

This commit is contained in:
Serhiy Storchaka 2013-11-03 18:24:04 +02:00
parent 31b9c845d3
commit 68f518ce4a
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ def int_round(x):
_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