[Python-checkins] cpython (3.2): Removed debugging leftovers.
lukasz.langa
python-checkins at python.org
Fri Apr 29 16:18:11 CEST 2011
http://hg.python.org/cpython/rev/546cae2917ec
changeset: 69687:546cae2917ec
branch: 3.2
user: Łukasz Langa <lukasz at langa.pl>
date: Fri Apr 29 16:16:36 2011 +0200
summary:
Removed debugging leftovers.
files:
Lib/configparser.py | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/Lib/configparser.py b/Lib/configparser.py
--- a/Lib/configparser.py
+++ b/Lib/configparser.py
@@ -1057,8 +1057,6 @@
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,
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list