summaryrefslogtreecommitdiff
path: root/Lib/ConfigParser.py
Commit message (Expand)AuthorAgeFilesLines
* Fixes #4686. Reverts redundant picklability code from r74544.Łukasz Langa2012-01-231-33/+9
* Fixes #13760: picklability of ConfigParser exceptionsŁukasz Langa2012-01-201-1/+33
* Issue 12717: Fix-up an earlier backport in ConfigParser.Raymond Hettinger2011-08-091-1/+1
* Issue 11089: Fix performance bug in ConfigParser that impaired itsRaymond Hettinger2011-02-021-3/+37
* fix output from RawConfigParser.write and ConfigParser.write for NoneFred Drake2010-09-031-1/+1
* Issue #9551: Do not raise TypeError when setting the value to None forFred Drake2010-08-101-9/+9
* Merged revisions 83226-83227,83229-83230,83232 via svnmerge fromGeorg Brandl2010-08-011-5/+6
* Fix #7113. Patch by Łukasz Langa.Brian Curtin2010-07-261-14/+23
* - apply patch from issue 7005Fred Drake2010-02-191-18/+44
* #5741 followup: should also allow %%(blah)s.Georg Brandl2009-04-131-2/+2
* #5741: dont disallow double percent signs in SafeConfigParser.set() keys.Georg Brandl2009-04-121-4/+4
* Backport 70111: Let configparser use ordered dicts by default.Raymond Hettinger2009-03-031-1/+7
* Remove a __getitem__() removal on an exception to silence a warning triggeredBrett Cannon2008-08-021-1/+1
* ConfigParser renaming reversal part 3: move module into place and adapt imports.Georg Brandl2008-05-251-0/+669
* Renamed the ConfigParser module to 'configparser'.Alexandre Vassalotti2008-05-141-669/+0
* Issue 1781. Now ConfigParser.add_section does not let you add aFacundo Batista2008-02-231-1/+5
* Deprecate BaseException.message as per PEP 352.Brett Cannon2007-05-051-0/+15
* Patch #1603688: ConfigParser.SafeConfigParser now checks values thatGeorg Brandl2007-03-131-2/+11
* Patch #1371075: Make ConfigParser accept optional dict typeMartin v. Löwis2006-12-031-7/+8
* Fix all wrong instances of "it's".Georg Brandl2005-07-221-1/+1
* SF bug #997050: Document, test, & check for non-string values in ConfigParser...David Goodger2004-10-031-3/+8
* SF bug #1017864: ConfigParser now correctly handles default keys, processing ...David Goodger2004-10-031-7/+9
* ConfigParser:Fred Drake2004-05-181-1/+6
* ConfigParser:Fred Drake2004-05-181-0/+2
* ConfigParser:Fred Drake2004-05-181-1/+11
* Replace str.find()!=1 with the more readable "in" operator.Raymond Hettinger2004-05-041-2/+2
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-5/+5
* Make both items() methods return lists; one had changed to return anFred Drake2003-10-211-5/+4
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* SF patch #790443: add SafeConfigParser to __all__Raymond Hettinger2003-09-011-1/+1
* Fix arguments for instantiating InterpolationSyntaxErrorNeal Norwitz2003-06-291-3/+3
* Further cleanup of exceptions. All interpolation-related exceptionsFred Drake2002-12-311-30/+37
* ConfigParser._interpolate(): Pass the missing key to theFred Drake2002-12-311-4/+3
* - added InterpolationSyntaxError to __all__Fred Drake2002-12-301-4/+25
* Add missing InterpolationSyntaxError.Neal Norwitz2002-12-301-0/+2
* Update doc for getboolean() to match code (ie, returning True/False)Neal Norwitz2002-12-171-8/+8
* Whitespace normalization.Tim Peters2002-11-091-1/+1
* Fix docstring typosAndrew M. Kuchling2002-11-061-2/+2
* Implement a safer and more predictable interpolation approach.Fred Drake2002-10-251-0/+48
* According to the docs, __name__ is not exposed via the API exceptFred Drake2002-10-251-2/+8
* Re-factor: Use a RawConfigParser base class and make ConfigParser aFred Drake2002-10-251-103/+133
* Allow internal whitespace in keys.Fred Drake2002-09-271-3/+4
* items(): New method, provided by Gustavo Niemeyer in SF bug #545096.Fred Drake2002-09-271-0/+33
* has_option(): Use the option name transform consistently.Fred Drake2002-09-271-53/+49
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-3/+3
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-8/+8
* Replaced boolean test with 'is None'Raymond Hettinger2002-06-011-1/+1
* Clean up uses of some deprecated features.Fred Drake2002-04-261-2/+2
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* [Bug #523301] ConfigParser.write() produces broken output for values thatAndrew M. Kuchling2002-03-081-2/+2