diff options
author | Łukasz Langa <lukasz@langa.pl> | 2011-04-29 14:17:51 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2011-04-29 14:17:51 (GMT) |
commit | 82710c594b578a3da57e63437ef5fe346ef0f4a7 (patch) | |
tree | eb18f2d043890a19c15ecc1e3f77d7c218a576c9 /Lib/configparser.py | |
parent | 0cd25c9dd95771dfebc22dab9cd07d4a3b916ced (diff) | |
parent | 5c7419d4332a9929d8ba0db13d5e2c0db3aee160 (diff) | |
download | cpython-82710c594b578a3da57e63437ef5fe346ef0f4a7.zip cpython-82710c594b578a3da57e63437ef5fe346ef0f4a7.tar.gz cpython-82710c594b578a3da57e63437ef5fe346ef0f4a7.tar.bz2 |
Merged minor cleanups from 3.2.
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, |