mirror of https://github.com/python/cpython
Issue #19085: Fixed pixels rounding for last Tk patchlevels.
This commit is contained in:
commit
9fe43f5ff3
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue