Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occurs | Łukasz Langa | 2012-07-07 | 1 | -6/+14 |
| | | | | earlier without preceding space. | ||||
* | Merge with 3.2. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
|\ | |||||
| * | Remove duplication. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
| | | |||||
* | | Merged minor cleanups from 3.2. | Łukasz Langa | 2011-04-29 | 1 | -2/+0 |
|\ \ | |/ | |||||
| * | Removed debugging leftovers. | Łukasz Langa | 2011-04-29 | 1 | -2/+0 |
| | | |||||
* | | Merged solution for #11324 from 3.2. | Łukasz Langa | 2011-04-28 | 1 | -4/+5 |
|\ \ | |/ | |||||
| * | Closes #11324: ConfigParser(interpolation=None) doesn't work. | Łukasz Langa | 2011-04-28 | 1 | -4/+5 |
| | | | | | | | | Initial patches by Tobias Brink. Thanks! | ||||
* | | Merged solution for #11858 from 3.2. | Łukasz Langa | 2011-04-28 | 1 | -3/+5 |
|\ \ | |/ | |||||
| * | Closes #11858: configparser.ExtendedInterpolation and section case. | Łukasz Langa | 2011-04-28 | 1 | -3/+5 |
| | | | | | | | | Patch by ゆかり ぴんく魔女. Thanks! | ||||
* | | Merged #11670 from 3.2 | Łukasz Langa | 2011-04-27 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Closes #11670: configparser read_file now iterates over f. | Łukasz Langa | 2011-04-27 | 1 | -4/+4 |
| | | |||||
| * | Issue #11089: Fix performance issue limiting the use of ConfigParser() | Raymond Hettinger | 2011-02-21 | 1 | -8/+9 |
| | | | | | | | | with large config files. | ||||
* | | Issue #11297: Add collections.ChainMap() | Raymond Hettinger | 2011-02-26 | 1 | -1/+1 |
| | | |||||
* | | Fix imports from collections.abc | Raymond Hettinger | 2011-02-23 | 1 | -1/+2 |
| | | |||||
* | | Issue #11089: Fix performance issue limiting the use of ConfigParser() | Raymond Hettinger | 2011-02-21 | 1 | -8/+9 |
|/ | | | | with large config files. | ||||
* | 100% test coverage, better mapping protocol compatibility, some minor bugfixes | Łukasz Langa | 2010-12-17 | 1 | -17/+23 |
| | |||||
* | configparser API cleanup: default values now sensible, slightly incompatible. | Łukasz Langa | 2010-12-17 | 1 | -23/+19 |
| | | | | | Backwards compatible alternative values possible as documented. Done by Łukasz Langa, approved by Raymond and Fred. | ||||
* | Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser. | Łukasz Langa | 2010-12-16 | 1 | -31/+22 |
| | | | | Life is beatiful once again. | ||||
* | configparser: mapping protocol access get() handles configparser-specific ↵ | Łukasz Langa | 2010-12-04 | 1 | -6/+16 |
| | | | | arguments as well | ||||
* | configparser: fixed inconsistency where in SafeConfigParser option values | Łukasz Langa | 2010-12-04 | 1 | -4/+19 |
| | | | | | 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 Langa | 2010-12-04 | 1 | -8/+4 |
| | |||||
* | %s -> %r correction after review by Éric Araujo | Łukasz Langa | 2010-12-03 | 1 | -1/+1 |
| | |||||
* | Issue 10499: Modular interpolation in configparser | Łukasz Langa | 2010-12-03 | 1 | -231/+309 |
| | |||||
* | configparser: read-only attributes to get the section name and parser from a ↵ | Łukasz Langa | 2010-11-21 | 1 | -15/+25 |
| | | | | SectionProxy instance | ||||
* | Issue #10489: removed broken `__name__` support from configparser | Łukasz Langa | 2010-11-21 | 1 | -24/+1 |
| | |||||
* | configparser: the name of the DEFAULT section is now customizable | Łukasz Langa | 2010-11-20 | 1 | -17/+19 |
| | |||||
* | configparser.py: changed PendingDeprecationWarnings to DeprecationWarnings, ↵ | Łukasz Langa | 2010-11-11 | 1 | -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 Langa | 2010-11-10 | 1 | -66/+175 |
| | |||||
* | Fix typo and add test case. | Florent Xicluna | 2010-09-22 | 1 | -4/+3 |
| | |||||
* | add consistent support for the vars and default arguments on all | Fred Drake | 2010-09-04 | 1 | -52/+144 |
| | | | | | configuration parser classes (http://bugs.python.org/issue9421) | ||||
* | fix output from RawConfigParser.write and ConfigParser.write for None | Fred Drake | 2010-09-03 | 1 | -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 Drake | 2010-08-09 | 1 | -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 Brandl | 2010-07-29 | 1 | -5/+6 |
| | |||||
* | #9411: allow selecting an encoding for configparser files. Also adds a new ↵ | Georg Brandl | 2010-07-29 | 1 | -3/+3 |
| | | | | test config file to test special cases. | ||||
* | Fix for r83202: improve the handling of empty lines. | Georg Brandl | 2010-07-29 | 1 | -7/+8 |
| | |||||
* | #1682942: add some ConfigParser features: alternate delimiters, alternate ↵ | Georg Brandl | 2010-07-28 | 1 | -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 Curtin | 2010-07-26 | 1 | -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 configparsermodule | Michael Foord | 2010-07-25 | 1 | -1/+8 |
| | |||||
* | Merged revisions 78232 via svnmerge from | Fred Drake | 2010-02-19 | 1 | -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 from | Georg Brandl | 2009-04-27 | 1 | -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 from | Georg Brandl | 2009-04-27 | 1 | -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 configparser | Raymond Hettinger | 2009-03-03 | 1 | -2/+7 |
| | | | | before _collections had been built. | ||||
* | Let configparser use ordered dicts by default. | Raymond Hettinger | 2009-03-02 | 1 | -1/+2 |
| | |||||
* | Renamed ConfigParser to configparser. | Alexandre Vassalotti | 2008-05-14 | 1 | -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. ........ |