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

This commit is contained in:
Serhiy Storchaka 2013-11-03 18:24:31 +02:00
parent 49667f09a7
commit b2817327b9
1 changed files with 1 additions and 1 deletions

View File

@ -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