summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyParse.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-05-14 22:10:50 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-05-14 22:10:50 (GMT)
commit2733618fd933bebc5a1c33437135b2cc3aacb018 (patch)
tree646906cf0e738c2f296198073f9aaf9a264009dc /Lib/idlelib/PyParse.py
parent82796193f9d8a4f5f85f438bd8b9a5a0efbbaabe (diff)
downloadcpython-2733618fd933bebc5a1c33437135b2cc3aacb018.zip
cpython-2733618fd933bebc5a1c33437135b2cc3aacb018.tar.gz
cpython-2733618fd933bebc5a1c33437135b2cc3aacb018.tar.bz2
idlelib: remove unused names and imports (one is a duplicate import).
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 3e501ca..9ccbb25 100644
--- a/Lib/idlelib/PyParse.py
+++ b/Lib/idlelib/PyParse.py
@@ -1,7 +1,6 @@
import re
import sys
from collections import Mapping
-from functools import partial
# Reason last stmt is continued (or C_NONE if it's not).
(C_NONE, C_BACKSLASH, C_STRING_FIRST_LINE,