diff options
Diffstat (limited to 'Lib/configparser.py')
-rw-r--r-- | Lib/configparser.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py index e56f963..b843c00 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, |