summaryrefslogtreecommitdiff
path: root/Lib/configparser.py
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2011-04-29 16:17:51 +0200
committerŁukasz Langa <lukasz@langa.pl>2011-04-29 16:17:51 +0200
commit920834652e4b02c894d66e3b269a728bc33ae545 (patch)
treeb999e99641865b20f9e1cd6a532f82e9698d274b /Lib/configparser.py
parent02548963c99de54eaf8b45b08a18ee4f9d3b9863 (diff)
parente1a1eb575eed13acdfc5407ee576e0032e01482d (diff)
downloadcpython-920834652e4b02c894d66e3b269a728bc33ae545.tar.gz
Merged minor cleanups from 3.2.
Diffstat (limited to 'Lib/configparser.py')
-rw-r--r--Lib/configparser.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py
index e56f96350d..b843c00cee 100644
--- a/Lib/configparser.py
+++ b/Lib/configparser.py
@@ -1058,8 +1058,6 @@ class RawConfigParser(MutableMapping):
if not optname:
e = self._handle_error(e, fpname, lineno, line)
optname = self.optionxform(optname.rstrip())
- if hasattr(self, '__ping__'):
- import pdb; pdb.set_trace()
if (self._strict and
(sectname, optname) in elements_added):
raise DuplicateOptionError(sectname, optname,