diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-22 17:14:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 17:14:27 (GMT) |
commit | 47e35625ff2c4e6511a12e7178c3e4fbc965b634 (patch) | |
tree | e9a6b4d687233135f993260b12011613b9189058 /Lib/tkinter | |
parent | 8661c5053fbe3e246289d77e49a813470b3a16f7 (diff) | |
download | cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.zip cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.tar.gz cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.tar.bz2 |
gh-84623: Remove unused imports (#94132)
Diffstat (limited to 'Lib/tkinter')
-rw-r--r-- | Lib/tkinter/test/support.py | 1 | ||||
-rw-r--r-- | Lib/tkinter/test/widget_tests.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Lib/tkinter/test/support.py b/Lib/tkinter/test/support.py index 9e26d04..9154eba 100644 --- a/Lib/tkinter/test/support.py +++ b/Lib/tkinter/test/support.py @@ -1,5 +1,4 @@ import functools -import re import tkinter import unittest diff --git a/Lib/tkinter/test/widget_tests.py b/Lib/tkinter/test/widget_tests.py index a450544..8418154 100644 --- a/Lib/tkinter/test/widget_tests.py +++ b/Lib/tkinter/test/widget_tests.py @@ -1,6 +1,5 @@ # Common tests for test_tkinter/test_widgets.py and test_ttk/test_widgets.py -import unittest import tkinter from tkinter.test.support import (AbstractTkTest, tcl_version, pixels_conv, tcl_obj_eq) |