summaryrefslogtreecommitdiff
path: root/Lib/idlelib/util.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-06-26 21:13:49 -0700
committerGitHub <noreply@github.com>2022-06-26 21:13:49 -0700
commitda6f859e8f12894937331bcf5f318321083f988d (patch)
treeccc2e9e738e062b4a83ab2d1dae3914b61ddcfbc /Lib/idlelib/util.py
parentfd26f29c29692b7f013052ed67ed7db30cffa283 (diff)
downloadcpython-git-da6f859e8f12894937331bcf5f318321083f988d.tar.gz
[3.11] gh-84623: Remove unused imports in stdlib (GH-94313)
GH-93773 Backport only for 2 idlelib files. Cherrypicked from 259dd71c32a42708a2800c72898e2664a33fda9c (cherry picked from commit bc8d81a8febd26e7d02e26f46532aeb7ecbd55be) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/util.py')
-rw-r--r--Lib/idlelib/util.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/idlelib/util.py b/Lib/idlelib/util.py
index 5480219786..ede670a4db 100644
--- a/Lib/idlelib/util.py
+++ b/Lib/idlelib/util.py
@@ -12,7 +12,6 @@ TODO:
* std streams (pyshell, run),
* warning stuff (pyshell, run).
"""
-from os import path
# .pyw is for Windows; .pyi is for stub files.
py_extensions = ('.py', '.pyw', '.pyi') # Order needed for open/save dialogs.