summaryrefslogtreecommitdiff
path: root/Lib/configparser.py
Commit message (Collapse)AuthorAgeFilesLines
...
* configparser.py: changed PendingDeprecationWarnings to DeprecationWarnings, ↵Łukasz Langa2010-11-111-9/+9
| | | | | | 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-101-66/+175
|
* Fix typo and add test case.Florent Xicluna2010-09-221-4/+3
|
* add consistent support for the vars and default arguments on allFred Drake2010-09-041-52/+144
| | | | | configuration parser classes (http://bugs.python.org/issue9421)
* fix output from RawConfigParser.write and ConfigParser.write for NoneFred Drake2010-09-031-1/+1
| | | | | | 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-091-56/+197
| | | | | 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-291-5/+6
|
* #9411: allow selecting an encoding for configparser files. Also adds a new ↵Georg Brandl2010-07-291-3/+3
| | | | test config file to test special cases.
* Fix for r83202: improve the handling of empty lines.Georg Brandl2010-07-291-7/+8
|
* #1682942: add some ConfigParser features: alternate delimiters, alternate ↵Georg Brandl2010-07-281-107/+211
| | | | 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-261-14/+23
| | | | | 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-251-1/+8
|
* Merged revisions 78232 via svnmerge fromFred Drake2010-02-191-18/+44
| | | | | | | | | | | 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-271-2/+2
| | | | | | | | | | 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-271-4/+4
| | | | | | | | | | 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. ........
* Fix bootstrapping problem where setup.py was using configparserRaymond Hettinger2009-03-031-2/+7
| | | | before _collections had been built.
* Let configparser use ordered dicts by default.Raymond Hettinger2009-03-021-1/+2
|
* Renamed ConfigParser to configparser.Alexandre Vassalotti2008-05-141-0/+669
Merged revisions 63247-63248 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63247 | georg.brandl | 2008-05-14 18:30:31 -0400 (Wed, 14 May 2008) | 2 lines Update configparser docs for lowercasing rename. ........ r63248 | alexandre.vassalotti | 2008-05-14 18:44:22 -0400 (Wed, 14 May 2008) | 8 lines Updated import statements to use the new `configparser` module name. Updated the documentation to use the new name. Revert addition of the stub entry for the old name. Georg, I am reverting your changes since this commit should propagate to py3k. ........