summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/pyparse.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-10 07:08:05 (GMT)
committerGitHub <noreply@github.com>2018-11-10 07:08:05 (GMT)
commit2903b0fd38a65e16ddafae7754ed5d605fea68ff (patch)
tree06e84c4a626603940294c3b6cde5dbf4061ffb4e /Lib/idlelib/pyparse.py
parentaa4f9a23932fbb298102e2ffa00021a8ddd2ea1c (diff)
downloadcpython-2903b0fd38a65e16ddafae7754ed5d605fea68ff.zip
cpython-2903b0fd38a65e16ddafae7754ed5d605fea68ff.tar.gz
cpython-2903b0fd38a65e16ddafae7754ed5d605fea68ff.tar.bz2
bpo-35202: Remove unused imports in idlelib (GH-10438)
(cherry picked from commit 43a74abb3a87092a7fd6c71042eafb977d70d8e0) Co-authored-by: Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com>
Diffstat (limited to 'Lib/idlelib/pyparse.py')
-rw-r--r--Lib/idlelib/pyparse.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/idlelib/pyparse.py b/Lib/idlelib/pyparse.py
index 1eeb915..81e7f53 100644
--- a/Lib/idlelib/pyparse.py
+++ b/Lib/idlelib/pyparse.py
@@ -11,7 +11,6 @@ _closere - line that must be followed by dedent.
_chew_ordinaryre - non-special characters.
"""
import re
-import sys
# Reason last statement is continued (or C_NONE if it's not).
(C_NONE, C_BACKSLASH, C_STRING_FIRST_LINE,