summaryrefslogtreecommitdiffstats
path: root/Lib/ConfigParser.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Give ConfigParser the capability to set as well as read options, and to writeEric S. Raymond2000-07-101-0/+36
* ConfigParser.read():Fred Drake2000-05-091-1/+1
* allow comments beginning with ; in key: value as well as key = valueJeremy Hylton2000-03-031-1/+1
* Fix comments relating to the specific regexs used to parse section andFred Drake2000-02-281-2/+2
* (Finally!) Changes related to the ConfigParser/INI-file topicsFred Drake2000-02-281-5/+11
* fixed a typo in a docstring, and slightly expanded the moduleBarry Warsaw1999-10-121-3/+2
* Added has_option(); fix bug in get() which botched interpolation ifGuido van Rossum1999-10-041-1/+16
* Urmpfh!Guido van Rossum1999-10-041-8/+43
* ConfigParser.read(): Don't mask IOError exceptions.Fred Drake1999-10-041-5/+3
* Patch suggested (and partially provided) by Lars Damerow: instead ofGuido van Rossum1999-06-171-5/+8
* Fix by Chris Petrilli (to his own code) to limit the number ofGuido van Rossum1999-02-121-1/+3
* From: Mike Orr <mso@oz.net>Guido van Rossum1999-01-301-1/+1
* Re-format the module docstring and document the new get() argument.Barry Warsaw1999-01-261-26/+29
* Patch by Chris Petrilli (not really tested since I don't know thisGuido van Rossum1999-01-261-6/+17
* Time machine experiment. Use '__name__' as the special key (alwaysBarry Warsaw1998-08-061-6/+10
* Several changes:Barry Warsaw1998-07-011-40/+90
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-146/+146
* get(): Fixed a bug in the merge order of the dictionaries. This makesBarry Warsaw1998-01-261-3/+4
* Checking in ConfigParser.py -- I don't see a reason why this can't beGuido van Rossum1997-12-091-0/+255