summaryrefslogtreecommitdiff
path: root/Lib/idlelib/configHandler.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-07-01 18:52:37 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2014-07-01 18:52:37 -0400
commit44f09ebd0f9914db8ad20d54a1d1f07164b95a1f (patch)
tree15e7589f605e0c7fa71248d024f6302c8d3c95bd /Lib/idlelib/configHandler.py
parentf18f87111b8f34b7344529fbc4f7dfd2c94bee2f (diff)
downloadcpython-git-44f09ebd0f9914db8ad20d54a1d1f07164b95a1f.tar.gz
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 8608f7c869..745d5500ce 100644
--- a/Lib/idlelib/configHandler.py
+++ b/Lib/idlelib/configHandler.py
@@ -20,7 +20,7 @@ configuration problem notification and resolution.
import os
import sys
-from configparser import ConfigParser, NoOptionError, NoSectionError
+from configparser import ConfigParser
class InvalidConfigType(Exception): pass
class InvalidConfigSet(Exception): pass