diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-06-28 15:25:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-06-28 15:25:04 (GMT) |
commit | 274271d1ae71dbd1177b54a5def45fed3ecb501f (patch) | |
tree | 50020b9d4c3b3922ce72f5c41b61c4fc969d822e /Lib/turtle.py | |
parent | e4a51e6543e18a004735e75344009b832134db6e (diff) | |
download | cpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.zip cpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.tar.gz cpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.tar.bz2 |
remove unused imports (closes #12432)
A patch from Vincent Legoll.
Diffstat (limited to 'Lib/turtle.py')
-rw-r--r-- | Lib/turtle.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py index 2ff5427..a0c9ae6 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -108,7 +108,6 @@ import tkinter as TK import types import math import time -import os import inspect from os.path import isfile, split, join |