summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-05 18:18:17 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-05 18:18:17 (GMT)
commit17972a746a28db8d91416e3da06d5168ec741d69 (patch)
treefe3734f9420909ac8552ffeefe0ade8293df5c42 /Lib
parent98e818b8e37692faae15c792397765b0bc0ef7ea (diff)
parent98555f3ac74d7120fd0dd114fe9422c106f0a137 (diff)
downloadcpython-17972a746a28db8d91416e3da06d5168ec741d69.zip
cpython-17972a746a28db8d91416e3da06d5168ec741d69.tar.gz
cpython-17972a746a28db8d91416e3da06d5168ec741d69.tar.bz2
Fix typo in tkinter tests (issue #19085).
Diffstat (limited to 'Lib')
-rw-r--r--Lib/tkinter/test/widget_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/test/widget_tests.py b/Lib/tkinter/test/widget_tests.py
index e488565..c94dbd3 100644
--- a/Lib/tkinter/test/widget_tests.py
+++ b/Lib/tkinter/test/widget_tests.py
@@ -22,7 +22,7 @@ if tcl_version[:2] == (8, 5):
if patchlevel < (8, 5, 12):
_pixels_round = int
else:
- _pixels_round = int_round
+ _pixels_round = round
return _pixels_round(x)