summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/configHandler.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-07-01 22:52:31 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-07-01 22:52:31 (GMT)
commit9bc505616b4bc88b29993f351218c3083bd3f3e8 (patch)
treee048bf96f170ba76af021b21ccc0dff4cf6f66e9 /Lib/idlelib/configHandler.py
parent5b1b38cbefa0d541e51ac17446c0cca6b5990417 (diff)
downloadcpython-9bc505616b4bc88b29993f351218c3083bd3f3e8.zip
cpython-9bc505616b4bc88b29993f351218c3083bd3f3e8.tar.gz
cpython-9bc505616b4bc88b29993f351218c3083bd3f3e8.tar.bz2
Delete a few unused names suggested by pyflakes.
Diffstat (limited to 'Lib/idlelib/configHandler.py')
-rw-r--r--Lib/idlelib/configHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py
index 67ab1f6..173751e 100644
--- a/Lib/idlelib/configHandler.py
+++ b/Lib/idlelib/configHandler.py
@@ -20,7 +20,7 @@ configuration problem notification and resolution.
import os
import sys
import string
-from ConfigParser import ConfigParser, NoOptionError, NoSectionError
+from ConfigParser import ConfigParser
class InvalidConfigType(Exception): pass
class InvalidConfigSet(Exception): pass