summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/pyparse.py
diff options
context:
space:
mode:
authorSrinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com>2018-11-10 06:45:31 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2018-11-10 06:45:31 (GMT)
commit43a74abb3a87092a7fd6c71042eafb977d70d8e0 (patch)
tree5a2368185a8c363914e4a3ef619c4a6facbb952f /Lib/idlelib/pyparse.py
parent2d1bc537fe8b15664bb3e648785ba3c12e93b232 (diff)
downloadcpython-43a74abb3a87092a7fd6c71042eafb977d70d8e0.zip
cpython-43a74abb3a87092a7fd6c71042eafb977d70d8e0.tar.gz
cpython-43a74abb3a87092a7fd6c71042eafb977d70d8e0.tar.bz2
bpo-35202: Remove unused imports in idlelib (GH-10438)
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,