summaryrefslogtreecommitdiffstats
path: root/Lib/configparser.py
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2011-04-29 14:16:36 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2011-04-29 14:16:36 (GMT)
commit5c7419d4332a9929d8ba0db13d5e2c0db3aee160 (patch)
treeabb755ef456dee55a2ece03d4b670460df1824df /Lib/configparser.py
parent4d27d9e8b665490b9860a71e32acad95f29f06ac (diff)
downloadcpython-5c7419d4332a9929d8ba0db13d5e2c0db3aee160.zip
cpython-5c7419d4332a9929d8ba0db13d5e2c0db3aee160.tar.gz
cpython-5c7419d4332a9929d8ba0db13d5e2c0db3aee160.tar.bz2
Removed debugging leftovers.
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 82b6f03..12ba5ad 100644
--- a/Lib/configparser.py
+++ b/Lib/configparser.py
@@ -1057,8 +1057,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,