summaryrefslogtreecommitdiff
path: root/Lib/ConfigParser.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Allow square brackets in the option names; this makes it possible to useFred Drake2001-02-121-1/+1
* Correction after second code path test.Eric S. Raymond2001-02-091-1/+1
* String method conversion.Eric S. Raymond2001-02-091-8/+8
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+5
* Whitespace normalization.Tim Peters2001-01-141-8/+8
* Make ConfigParser.Error inherit from Exception.Fred Drake2000-12-111-1/+3
* remove_option(): Use the right variable name for the option name!Fred Drake2000-12-041-2/+2
* Allow spaces in section names.Fred Drake2000-09-271-18/+33
* When reading the file, option names were not passed throughGuido van Rossum2000-09-251-1/+1
* Small fixes by Petru Paler (patch #100946) checked in with esr's approval.Thomas Wouters2000-07-211-2/+2
* ConfigParser enhancements to edit existing configs, part 2Eric S. Raymond2000-07-141-5/+41