Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ConfigParser: | Fred Drake | 2004-05-18 | 1 | -1/+3 |
| | | | | | | - read() method returns a list of files parsed successfully - add tests, documentation (closes SF patch #677651) | ||||
* | ConfigParser: | Fred Drake | 2004-05-18 | 1 | -3/+2 |
| | | | | | - DuplicateSectionError is only raised by add_section() (closes SF bug #830449) | ||||
* | ConfigParser: | Fred Drake | 2004-05-18 | 1 | -1/+3 |
| | | | | | | | | - don't allow setting options to non-string values; raise TypeError when the value is set, instead of raising an arbitrary exception later (such as when string interpolation is performed) - add tests, documentation (closes SF bug #810843) | ||||
* | ConfigParser: | Fred Drake | 2004-05-18 | 1 | -0/+9 |
| | | | | | | | | - ensure that option names in interpolations are handled by self.optionxform in the same way that other references to option names - add tests, documentation (closes SF bug #857881, patch #865455) | ||||
* | Fix some digicool addresses I noticed | Andrew M. Kuchling | 2004-01-08 | 1 | -1/+1 |
| | |||||
* | SF patch #859286: documentation bool change fix | Raymond Hettinger | 2003-12-31 | 1 | -3/+4 |
| | | | | (Contributed by George Yoshida.) | ||||
* | missing word (should backport - is release23-maint still locked?) | Skip Montanaro | 2003-12-15 | 1 | -1/+1 |
| | |||||
* | ConfigParser.items() and SafeConfigParser.items() no longer return a | Fred Drake | 2003-10-21 | 1 | -3/+3 |
| | | | | generator. See SF bug #818861. | ||||
* | SF patch #787929: reflect the introduce of boolean type(libcfgparser.tex) | Raymond Hettinger | 2003-08-14 | 1 | -4/+4 |
| | | | | (Contributed by George Yoshida.) | ||||
* | Further cleanup of exceptions. All interpolation-related exceptions | Fred Drake | 2002-12-31 | 1 | -3/+12 |
| | | | | | now derive from InterpolationError, which is not raised directly (only subclasses get raised). This matches what the docs already said. | ||||
* | InterpolationSyntaxError was added in 2.3 | Neal Norwitz | 2002-12-31 | 1 | -0/+1 |
| | |||||
* | - re-mark ESR's warning about extended registry syntax | Fred Drake | 2002-12-30 | 1 | -3/+11 |
| | | | | - document InterpolationSyntaxError | ||||
* | Added a useful warning to the documentation. | Eric S. Raymond | 2002-12-27 | 1 | -2/+4 |
| | |||||
* | Implement a safer and more predictable interpolation approach. | Fred Drake | 2002-10-25 | 1 | -0/+10 |
| | | | | Closes SF bug #511737. | ||||
* | Update to reflect the refactoring into the RawConfigParser and | Fred Drake | 2002-10-25 | 1 | -18/+41 |
| | | | | ConfigParser classes. | ||||
* | items(): New method, provided by Gustavo Niemeyer in SF bug #545096. | Fred Drake | 2002-09-27 | 1 | -0/+7 |
| | |||||
* | Update doc to reflect Tim's changes to bool. | Neal Norwitz | 2002-04-05 | 1 | -1/+2 |
| | |||||
* | Describe the behavior of the read() method when the list of filenames | Fred Drake | 2001-12-07 | 1 | -0/+18 |
| | | | | | | includes files that do not exist, explain the intended use of the interface, and show how to ensure an expected file really exists. This closes SF bug #490399. | ||||
* | Note that the values for Boolean options are case-insensitive. | Fred Drake | 2001-10-09 | 1 | -2/+3 |
| | |||||
* | Update the description of getboolean() to reflect the changes made by | Fred Drake | 2001-10-08 | 1 | -3/+5 |
| | | | | SF patch #467580. | ||||
* | "boolean" --> "Boolean" (per the style guide). | Fred Drake | 2001-10-01 | 1 | -1/+1 |
| | |||||
* | Use consistent version annotations instead of something ad hoc. | Fred Drake | 2001-09-28 | 1 | -4/+7 |
| | |||||
* | ConfigParser.optionxform(): Document this since it is available for | Fred Drake | 2001-02-19 | 1 | -0/+10 |
| | | | | sub-classes and application code to override. | ||||
* | Typo caught by Jim Tittsler <jwt@onjapan.net>: They --> The | Fred Drake | 2000-12-07 | 1 | -1/+1 |
| | |||||
* | Update the documentation for ConfigParser to match the recent changes. | Fred Drake | 2000-09-27 | 1 | -2/+13 |
| | |||||
* | Rob W. W. Hooft's spelling fixes for the Library Reference. I hope | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
| | | | | | | | | | SourceForge doesn't choke on this batch :-) I'm not entirely sure this is 100% correct. The patch changes an \index{persistency} to \index{presistence}, and I don't know what \index{} does. But it seems to do so persi--er, consistently, so I hope it isn't a problem. | ||||
* | Document the second round of ConfigParser changes. | Eric S. Raymond | 2000-07-14 | 1 | -1/+14 |
| | |||||
* | Give ConfigParser the capability to set as well as read options, and to write | Eric S. Raymond | 2000-07-10 | 1 | -0/+17 |
| | | | | | | | | | | | | | a representation of the configuration state in .ini format that can be read back in by a future read() call. Thus this class is now a back end for .ini editors as well as parsers. This patch is complete and tested, but exposes a bug in the ConfigParser implementation which I have not yet fixed. Because case information is discarded during parsing, the output of write() has its case smashed. I wrote this for a SourceForge interface script called forgetool. Documentation for the new entry points included. | ||||
* | From Greg Ward <gward@python.net>: | Fred Drake | 2000-05-23 | 1 | -2/+2 |
| | | | | Typo: "dictionairy" --> "dictionary" (twice). | ||||
* | read() method: clarify that strings are accepted and interpreted | Fred Drake | 2000-05-09 | 1 | -1/+9 |
| | | | | | | reasonably. readfp() method: added documentation. | ||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -12/+26 |
| | | | | (Very rough.) | ||||
* | Several new index entries to make find this easier. | Fred Drake | 1999-06-15 | 1 | -9/+11 |
| | | | | Noted that name=value is allowed in addition to name: value. | ||||
* | Added module references; minor grammatical fixes. | Fred Drake | 1999-05-11 | 1 | -1/+7 |
| | | | | All suggested by Eric Raymond. | ||||
* | Markup nits. | Fred Drake | 1999-04-21 | 1 | -3/+2 |
| | |||||
* | Added note about comments, from Christopher Petrilli. | Fred Drake | 1999-02-24 | 1 | -1/+3 |
| | |||||
* | Refer to the right RFC in the intro. | Fred Drake | 1999-02-22 | 1 | -1/+1 |
| | |||||
* | Incorporate changes for patched version of ConfigParser. | Fred Drake | 1999-01-26 | 1 | -5/+8 |
| | |||||
* | Documentation for the ConfigParser module, by Christopher G. Petrilli | Fred Drake | 1999-01-26 | 1 | -0/+116 |
(petrilli@amber.org). |