aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/configparser.py
Commit message (Collapse)AuthorAge
...
* | Merged `parser['DEFAULT'].__setitem__` fix (issue #16820) from 3.3.Łukasz Langa2012-12-31
|\|
| * Fixes `__setitem__` on parser['DEFAULT'] reported in issue #16820.Łukasz Langa2012-12-31
| |
* | Merged `parser.clean()` fix (issue #16820) from 3.2 through 3.3.Łukasz Langa2012-12-31
|\|
| * Merged `parser.clean()` fix (issue #16820) from 3.2.Łukasz Langa2012-12-31
| |\
| | * Fixes `parser.clean()` reported in issue #16820.Łukasz Langa2012-12-31
| | |
* | | Merged fix for #15803 from 3.2 through 3.3Łukasz Langa2012-12-31
|\| |
| * | Merged fix for #15803 from 3.2Łukasz Langa2012-12-31
| |\|
| | * Fixes issue #15803: incorrect `ConfigParser.items()` docstringŁukasz Langa2012-12-31
| | |
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-25
|/ /
* | Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occursŁukasz Langa2012-07-07
| | | | | | | | earlier without preceding space.
* | Merge with 3.2.Ezio Melotti2011-10-19
|\|
| * Remove duplication.Ezio Melotti2011-10-19
| |
* | Merged minor cleanups from 3.2.Łukasz Langa2011-04-29
|\|
| * Removed debugging leftovers.Łukasz Langa2011-04-29
| |
* | Merged solution for #11324 from 3.2.Łukasz Langa2011-04-28
|\|
| * Closes #11324: ConfigParser(interpolation=None) doesn't work.Łukasz Langa2011-04-28
| | | | | | | | Initial patches by Tobias Brink. Thanks!
* | Merged solution for #11858 from 3.2.Łukasz Langa2011-04-28
|\|
| * Closes #11858: configparser.ExtendedInterpolation and section case.Łukasz Langa2011-04-28
| | | | | | | | Patch by ゆかり ぴんく魔女. Thanks!
* | Merged #11670 from 3.2Łukasz Langa2011-04-27
|\|
| * Closes #11670: configparser read_file now iterates over f.Łukasz Langa2011-04-27
| |
| * Issue #11089: Fix performance issue limiting the use of ConfigParser()Raymond Hettinger2011-02-21
| | | | | | | | with large config files.
* | Issue #11297: Add collections.ChainMap()Raymond Hettinger2011-02-26
| |
* | Fix imports from collections.abcRaymond Hettinger2011-02-23
| |
* | Issue #11089: Fix performance issue limiting the use of ConfigParser()Raymond Hettinger2011-02-21
|/ | | | with large config files.
* 100% test coverage, better mapping protocol compatibility, some minor bugfixesŁukasz Langa2010-12-17
|
* configparser API cleanup: default values now sensible, slightly incompatible.Łukasz Langa2010-12-17
| | | | | Backwards compatible alternative values possible as documented. Done by Łukasz Langa, approved by Raymond and Fred.
* Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser.Łukasz Langa2010-12-16
| | | | Life is beatiful once again.
* configparser: mapping protocol access get() handles configparser-specific ↵Łukasz Langa2010-12-04
| | | | arguments as well
* configparser: fixed inconsistency where in SafeConfigParser option valuesŁukasz Langa2010-12-04
| | | | | were ensured to be strings but section names and option keys were not. Behaviour unchanged for RawConfigParser and ConfigParser.
* configparser: minute refactoring of RawConfigParser.items()Łukasz Langa2010-12-04
|
* %s -> %r correction after review by Éric AraujoŁukasz Langa2010-12-03
|
* Issue 10499: Modular interpolation in configparserŁukasz Langa2010-12-03
|
* configparser: read-only attributes to get the section name and parser from a ↵Łukasz Langa2010-11-21
| | | | SectionProxy instance
* Issue #10489: removed broken `__name__` support from configparserŁukasz Langa2010-11-21
|
* configparser: the name of the DEFAULT section is now customizableŁukasz Langa2010-11-20
|
* configparser.py: changed PendingDeprecationWarnings to DeprecationWarnings, ↵Łukasz Langa2010-11-11
| | | | | | via http://mail.python.org/pipermail/python-dev/2010-November/105391.html configparser:py: renamed _views to _proxies to be consistent with the SectionProxy name
* Issue #5412: extend configparser to support mapping accessŁukasz Langa2010-11-10
|
* Fix typo and add test case.Florent Xicluna2010-09-22
|
* add consistent support for the vars and default arguments on allFred Drake2010-09-04
| | | | | configuration parser classes (http://bugs.python.org/issue9421)
* fix output from RawConfigParser.write and ConfigParser.write for NoneFred Drake2010-09-03
| | | | | | values (http://bugs.python.org/issue7005) (merged r84443 from the release27-mmaint branch, with changes to reflect changes in Python 3)
* issue #9452:Fred Drake2010-08-09
| | | | | Add read_file, read_string, and read_dict to the configparser API; new source attribute to exceptions.
* #1090076: explain the behavior of *vars* in get() better.Georg Brandl2010-07-29
|
* #9411: allow selecting an encoding for configparser files. Also adds a new ↵Georg Brandl2010-07-29
| | | | test config file to test special cases.
* Fix for r83202: improve the handling of empty lines.Georg Brandl2010-07-29
|
* #1682942: add some ConfigParser features: alternate delimiters, alternate ↵Georg Brandl2010-07-28
| | | | comments, empty lines in values. Also enhance the docs with more examples and mention SafeConfigParser before ConfigParser. Patch by Lukas Langa, review by myself, Eric and Ezio.
* Fix #7113. Patch by Łukasz Langa.Brian Curtin2010-07-26
| | | | | Changes include using a list of lines instead of patching together using string interpolation, and a multi-line value test cases.
* Issue #4686 - add .args to exceptions in the configparsermoduleMichael Foord2010-07-25
|
* Merged revisions 78232 via svnmerge fromFred Drake2010-02-19
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78232 | fred.drake | 2010-02-19 00:24:30 -0500 (Fri, 19 Feb 2010) | 3 lines - apply patch from issue 7005 - add corresponding documentation ........
* Merged revisions 71564 via svnmerge fromGeorg Brandl2009-04-27
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71564 | georg.brandl | 2009-04-13 14:36:24 +0200 (Mo, 13 Apr 2009) | 1 line #5741 followup: should also allow %%(blah)s. ........
* Merged revisions 71537 via svnmerge fromGeorg Brandl2009-04-27
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71537 | georg.brandl | 2009-04-12 19:24:11 +0200 (So, 12 Apr 2009) | 1 line #5741: dont disallow double percent signs in SafeConfigParser.set() keys. ........