diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-13 16:28:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 16:28:41 +0200 |
commit | 259dd71c32a42708a2800c72898e2664a33fda9c (patch) | |
tree | 5c9a1e367ccc37526054a30867a14db9ad45430a /Lib/idlelib/util.py | |
parent | 65ac273280fa909f42dd78f3da634e6669e2b63d (diff) | |
download | cpython-259dd71c32a42708a2800c72898e2664a33fda9c.tar.gz cpython-259dd71c32a42708a2800c72898e2664a33fda9c.zip |
gh-84623: Remove unused imports in stdlib (#93773)
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 5480219786b..ede670a4db5 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. |