diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-06 21:13:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 21:13:24 (GMT) |
commit | 94d5f9827da4bf4b1e61c134fe29904b2b92f124 (patch) | |
tree | 831fc49c1826f0bd5b37610f190c0dbb30f13563 /Lib/turtle.py | |
parent | d1b0015ea88112258470463a74dad90ebce7ab67 (diff) | |
download | cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.zip cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.tar.gz cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.tar.bz2 |
gh-105407: Remove unused imports in the stdlib (#105411)
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 54f0efa..e542bc9 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -104,7 +104,6 @@ import math import time import inspect import sys -import warnings from os.path import isfile, split, join from copy import deepcopy |