diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2022-06-27 03:54:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 03:54:10 (GMT) |
commit | bc8d81a8febd26e7d02e26f46532aeb7ecbd55be (patch) | |
tree | e8173f05cd5fe0b4eef406970ce42c2e68af8c5f /Lib/idlelib/util.py | |
parent | 575997af623edc42c26e978d2bf15be39ba0e422 (diff) | |
download | cpython-bc8d81a8febd26e7d02e26f46532aeb7ecbd55be.zip cpython-bc8d81a8febd26e7d02e26f46532aeb7ecbd55be.tar.gz cpython-bc8d81a8febd26e7d02e26f46532aeb7ecbd55be.tar.bz2 |
[3.11] gh-84623: Remove unused imports in stdlib (#94313)
#93773
Backport only for 2 idlelib files.
Cherrypicked from 259dd71c32a42708a2800c72898e2664a33fda9c
Diffstat (limited to 'Lib/idlelib/util.py')
-rw-r--r-- | Lib/idlelib/util.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/idlelib/util.py b/Lib/idlelib/util.py index 5480219..ede670a 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. |