diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-05 18:18:17 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-05 18:18:17 (GMT) |
| commit | 17972a746a28db8d91416e3da06d5168ec741d69 (patch) | |
| tree | fe3734f9420909ac8552ffeefe0ade8293df5c42 /Lib/tkinter/test | |
| parent | 98e818b8e37692faae15c792397765b0bc0ef7ea (diff) | |
| parent | 98555f3ac74d7120fd0dd114fe9422c106f0a137 (diff) | |
| download | cpython-17972a746a28db8d91416e3da06d5168ec741d69.zip cpython-17972a746a28db8d91416e3da06d5168ec741d69.tar.gz cpython-17972a746a28db8d91416e3da06d5168ec741d69.tar.bz2 | |
Fix typo in tkinter tests (issue #19085).
Diffstat (limited to 'Lib/tkinter/test')
| -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) |
