diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-01 22:52:31 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-01 22:52:31 (GMT) |
commit | 9bc505616b4bc88b29993f351218c3083bd3f3e8 (patch) | |
tree | e048bf96f170ba76af021b21ccc0dff4cf6f66e9 /Lib/idlelib/configHandler.py | |
parent | 5b1b38cbefa0d541e51ac17446c0cca6b5990417 (diff) | |
download | cpython-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.py | 2 |
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 |