aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/ConfigParser.py
Commit message (Expand)AuthorAge
* Further cleanup of exceptions. All interpolation-related exceptionsFred Drake2002-12-31
* ConfigParser._interpolate(): Pass the missing key to theFred Drake2002-12-31
* - added InterpolationSyntaxError to __all__Fred Drake2002-12-30
* Add missing InterpolationSyntaxError.Neal Norwitz2002-12-30
* Update doc for getboolean() to match code (ie, returning True/False)Neal Norwitz2002-12-17
* Whitespace normalization.Tim Peters2002-11-09
* Fix docstring typosAndrew M. Kuchling2002-11-06
* Implement a safer and more predictable interpolation approach.Fred Drake2002-10-25
* According to the docs, __name__ is not exposed via the API exceptFred Drake2002-10-25
* Re-factor: Use a RawConfigParser base class and make ConfigParser aFred Drake2002-10-25
* Allow internal whitespace in keys.Fred Drake2002-09-27
* items(): New method, provided by Gustavo Niemeyer in SF bug #545096.Fred Drake2002-09-27
* has_option(): Use the option name transform consistently.Fred Drake2002-09-27
* Remove uses of the string and types modules:Walter Dörwald2002-06-03
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-01
* Replaced boolean test with 'is None'Raymond Hettinger2002-06-01
* Clean up uses of some deprecated features.Fred Drake2002-04-26
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-04
* [Bug #523301] ConfigParser.write() produces broken output for values thatAndrew M. Kuchling2002-03-08
* Whitespace normalization.Tim Peters2001-10-18
* Apply modified SF patch 467580: ConfigParser.getboolean(): FALSE, TRUE.Guido van Rossum2001-10-04
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-17
* Remove redefinition of has_option() methodAndrew M. Kuchling2001-08-13
* Patch #444359: Remove unused imports.Martin v. Löwis2001-08-02
* When reading a continuation line, make sure we still use the transformedFred Drake2001-07-06
* Make sure ConfigParser uses .optionxform() consistently; this affectsFred Drake2001-02-26
* Be much more permissive in what we accept in section names; there has beenFred Drake2001-02-14
* Allow square brackets in the option names; this makes it possible to useFred Drake2001-02-12
* Correction after second code path test.Eric S. Raymond2001-02-09
* String method conversion.Eric S. Raymond2001-02-09
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-20
* Whitespace normalization.Tim Peters2001-01-14
* Make ConfigParser.Error inherit from Exception.Fred Drake2000-12-11
* remove_option(): Use the right variable name for the option name!Fred Drake2000-12-04
* Allow spaces in section names.Fred Drake2000-09-27
* When reading the file, option names were not passed throughGuido van Rossum2000-09-25
* Small fixes by Petru Paler (patch #100946) checked in with esr's approval.Thomas Wouters2000-07-21
* ConfigParser enhancements to edit existing configs, part 2Eric S. Raymond2000-07-14
* Give ConfigParser the capability to set as well as read options, and to writeEric S. Raymond2000-07-10
* ConfigParser.read():Fred Drake2000-05-09
* allow comments beginning with ; in key: value as well as key = valueJeremy Hylton2000-03-03
* Fix comments relating to the specific regexs used to parse section andFred Drake2000-02-28
* (Finally!) Changes related to the ConfigParser/INI-file topicsFred Drake2000-02-28
* fixed a typo in a docstring, and slightly expanded the moduleBarry Warsaw1999-10-12
* Added has_option(); fix bug in get() which botched interpolation ifGuido van Rossum1999-10-04
* Urmpfh!Guido van Rossum1999-10-04
* ConfigParser.read(): Don't mask IOError exceptions.Fred Drake1999-10-04
* Patch suggested (and partially provided) by Lars Damerow: instead ofGuido van Rossum1999-06-17
* Fix by Chris Petrilli (to his own code) to limit the number ofGuido van Rossum1999-02-12
* From: Mike Orr <mso@oz.net>Guido van Rossum1999-01-30