https://github.com/python/cpython/commit/8a2e34c9e002d85d81ed0f1c92cf7ed5c99a04ae commit: 8a2e34c9e002d85d81ed0f1c92cf7ed5c99a04ae branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: terryjreedy <[email protected]> date: 2026-07-02T21:51:38Z summary:
[3.14] gh-151428: Remove unused imports in idlelib.idle_test (GH-151478) (GH-152916) (#152917) [3.15] gh-151428: Remove unused imports in idlelib.idle_test (GH-151478) (GH-152916) (cherry picked from commit 984ebbfeecaa8b614fd81ebac4460e301ffc8f08) Co-authored-by: Terry Jan Reedy <[email protected]> files: M Lib/idlelib/idle_test/template.py M Lib/idlelib/idle_test/test_help.py diff --git a/Lib/idlelib/idle_test/template.py b/Lib/idlelib/idle_test/template.py index 69a2af22efa149..0a4bd8b8e981fc 100644 --- a/Lib/idlelib/idle_test/template.py +++ b/Lib/idlelib/idle_test/template.py @@ -1,6 +1,5 @@ "Test , coverage %." -from idlelib import zzdummy import unittest from test.support import requires from tkinter import Tk diff --git a/Lib/idlelib/idle_test/test_help.py b/Lib/idlelib/idle_test/test_help.py index ebb02b5c0d8356..ebbaceb2eb7bbf 100644 --- a/Lib/idlelib/idle_test/test_help.py +++ b/Lib/idlelib/idle_test/test_help.py @@ -4,7 +4,6 @@ import unittest from test.support import requires requires('gui') -from os.path import abspath, dirname, join from tkinter import Tk _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
