| Commit message (Expand) | Author | Age | Files | Lines |
* | Renamed ConfigParser to configparser. | Alexandre Vassalotti | 2008-05-14 | 1 | -669/+0 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-23 | 1 | -1/+5 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -2/+2 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
|
|
* | Merged revisions 55325-55327 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -0/+15 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -2/+11 |
|
|
* | When removing indexing/slicing on exceptions some places were changed | Brett Cannon | 2007-03-21 | 1 | -1/+1 |
|
|
* | Remove the ability to slice/index on exceptions per PEP 352. | Brett Cannon | 2007-02-27 | 1 | -1/+1 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -3/+3 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -7/+8 |
|
|
* | Fix all wrong instances of "it's". | Georg Brandl | 2005-07-22 | 1 | -1/+1 |
|
|
* | SF bug #997050: Document, test, & check for non-string values in ConfigParser... | David Goodger | 2004-10-03 | 1 | -3/+8 |
|
|
* | SF bug #1017864: ConfigParser now correctly handles default keys, processing ... | David Goodger | 2004-10-03 | 1 | -7/+9 |
|
|
* | ConfigParser: | Fred Drake | 2004-05-18 | 1 | -1/+6 |
|
|
* | ConfigParser: | Fred Drake | 2004-05-18 | 1 | -0/+2 |
|
|
* | ConfigParser: | Fred Drake | 2004-05-18 | 1 | -1/+11 |
|
|
* | Replace str.find()!=1 with the more readable "in" operator. | Raymond Hettinger | 2004-05-04 | 1 | -2/+2 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -5/+5 |
|
|
* | Make both items() methods return lists; one had changed to return an | Fred Drake | 2003-10-21 | 1 | -5/+4 |
|
|
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
|
|
* | SF patch #790443: add SafeConfigParser to __all__ | Raymond Hettinger | 2003-09-01 | 1 | -1/+1 |
|
|
* | Fix arguments for instantiating InterpolationSyntaxError | Neal Norwitz | 2003-06-29 | 1 | -3/+3 |
|
|
* | Further cleanup of exceptions. All interpolation-related exceptions | Fred Drake | 2002-12-31 | 1 | -30/+37 |
|
|
* | ConfigParser._interpolate(): Pass the missing key to the | Fred Drake | 2002-12-31 | 1 | -4/+3 |
|
|
* | - added InterpolationSyntaxError to __all__ | Fred Drake | 2002-12-30 | 1 | -4/+25 |
|
|
* | Add missing InterpolationSyntaxError. | Neal Norwitz | 2002-12-30 | 1 | -0/+2 |
|
|
* | Update doc for getboolean() to match code (ie, returning True/False) | Neal Norwitz | 2002-12-17 | 1 | -8/+8 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-11-09 | 1 | -1/+1 |
|
|
* | Fix docstring typos | Andrew M. Kuchling | 2002-11-06 | 1 | -2/+2 |
|
|
* | Implement a safer and more predictable interpolation approach. | Fred Drake | 2002-10-25 | 1 | -0/+48 |
|
|
* | According to the docs, __name__ is not exposed via the API except | Fred Drake | 2002-10-25 | 1 | -2/+8 |
|
|
* | Re-factor: Use a RawConfigParser base class and make ConfigParser a | Fred Drake | 2002-10-25 | 1 | -103/+133 |
|
|
* | Allow internal whitespace in keys. | Fred Drake | 2002-09-27 | 1 | -3/+4 |
|
|
* | items(): New method, provided by Gustavo Niemeyer in SF bug #545096. | Fred Drake | 2002-09-27 | 1 | -0/+33 |
|
|
* | has_option(): Use the option name transform consistently. | Fred Drake | 2002-09-27 | 1 | -53/+49 |
|
|
* | Remove uses of the string and types modules: | Walter Dörwald | 2002-06-03 | 1 | -3/+3 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -8/+8 |
|
|
* | Replaced boolean test with 'is None' | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
|
|
* | Clean up uses of some deprecated features. | Fred Drake | 2002-04-26 | 1 | -2/+2 |
|
|
* | Convert a pile of obvious "yes/no" functions to return bool. | Tim Peters | 2002-04-04 | 1 | -2/+2 |
|
|
* | [Bug #523301] ConfigParser.write() produces broken output for values that | Andrew M. Kuchling | 2002-03-08 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-10-18 | 1 | -1/+1 |
|
|
* | Apply modified SF patch 467580: ConfigParser.getboolean(): FALSE, TRUE. | Guido van Rossum | 2001-10-04 | 1 | -6/+8 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -2/+2 |
|
|
* | Remove redefinition of has_option() method | Andrew M. Kuchling | 2001-08-13 | 1 | -7/+0 |
|
|
* | Patch #444359: Remove unused imports. | Martin v. Löwis | 2001-08-02 | 1 | -1/+0 |
|
|
* | When reading a continuation line, make sure we still use the transformed | Fred Drake | 2001-07-06 | 1 | -1/+2 |
|
|
* | Make sure ConfigParser uses .optionxform() consistently; this affects | Fred Drake | 2001-02-26 | 1 | -0/+3 |
|
|
* | Be much more permissive in what we accept in section names; there has been | Fred Drake | 2001-02-14 | 1 | -1/+1 |
|
|