summaryrefslogtreecommitdiffstats
path: root/Lib/ConfigParser.py
Commit message (Expand)AuthorAgeFilesLines
* Renamed ConfigParser to configparser.Alexandre Vassalotti2008-05-141-669/+0
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-231-1/+5
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+2
* Raise statement normalization in Lib/.Collin Winter2007-08-301-1/+1
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-0/+15
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-2/+11
* When removing indexing/slicing on exceptions some places were changedBrett Cannon2007-03-211-1/+1
* Remove the ability to slice/index on exceptions per PEP 352.Brett Cannon2007-02-271-1/+1
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-3/+3
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-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
* Whitespace normalization.Tim Peters2001-10-181-1/+1
* Apply modified SF patch 467580: ConfigParser.getboolean(): FALSE, TRUE.Guido van Rossum2001-10-041-6/+8
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-2/+2
* Remove redefinition of has_option() methodAndrew M. Kuchling2001-08-131-7/+0
* Patch #444359: Remove unused imports.Martin v. Löwis2001-08-021-1/+0
* When reading a continuation line, make sure we still use the transformedFred Drake2001-07-061-1/+2
* Make sure ConfigParser uses .optionxform() consistently; this affectsFred Drake2001-02-261-0/+3
* Be much more permissive in what we accept in section names; there has beenFred Drake2001-02-141-1/+1