diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-05 18:17:50 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-05 18:17:50 (GMT) |
commit | 98555f3ac74d7120fd0dd114fe9422c106f0a137 (patch) | |
tree | e5b0ef900868a128f829e4bb4584aa7e70f3387e | |
parent | 6fc5f98480a197e434816d4b7dacd096c9f66d09 (diff) | |
download | cpython-98555f3ac74d7120fd0dd114fe9422c106f0a137.zip cpython-98555f3ac74d7120fd0dd114fe9422c106f0a137.tar.gz cpython-98555f3ac74d7120fd0dd114fe9422c106f0a137.tar.bz2 |
Fix typo in tkinter tests (issue #19085).
-rw-r--r-- | Lib/tkinter/test/widget_tests.py | 2 |
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) |