summaryrefslogtreecommitdiffstats
path: root/Lib/configparser.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-31307: Make ConfigParser.read() accept bytes objects (GH-3420)Vincent Michel2017-11-021-1/+1
|
* bpo-23835: Restore legacy defaults= behavior for RawConfigParser (#3191)Łukasz Langa2017-08-241-1/+12
| | | | | | | The fix for bpo-23835 fixed ConfigParser behavior in defaults= handling. Unfortunately, it caused a backwards compatibility regression with RawConfigParser objects which allow for non-string values. This commit restores the legacy behavior for RawConfigParser only.
* bpo-23835: Enforce that configparser defaults are strings (#2558)James Tocknell2017-08-211-3/+2
| | | | * Enforce that configparser defaults are strings * Update test_configparser.py
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-1/+1
| | | This hides unwanted implementation details from tracebacks.
* bpo-29623: Make PathLike objects work with ConfigParser.read() (#242)David Ellis2017-03-031-1/+4
|
* Fixes #24142: [configparser] always join multiline values to not leave the ↵Łukasz Langa2016-11-261-1/+1
| | | | parser in an invalid state
* Issue #21159: Improve message in configparser.InterpolationMissingOptionError.Robert Collins2015-08-131-15/+14
|\ | | | | | | Patch from Łukasz Langa.
| * Issue #21159: Improve message in configparser.InterpolationMissingOptionError.Robert Collins2015-08-131-15/+14
| | | | | | | | Patch from Łukasz Langa.
* | Closes #18159: ConfigParser getters not available on SectionProxyŁukasz Langa2014-09-151-42/+128
| |
* | Fix #19546: onfigparser exceptions expose implementation details. Patch by ↵Łukasz Langa2014-09-041-6/+6
|/ | | | Claudiu Popa.
* Issue #20363. Fixed BytesWarning triggerred by test suite.Serhiy Storchaka2014-02-061-2/+2
|\ | | | | | | Patch by Berker Peksag.
| * Issue #20363. Fixed BytesWarning triggerred by test suite.Serhiy Storchaka2014-02-061-2/+2
| | | | | | | | Patch by Berker Peksag.
* | Issue #20315: Removed support for backward compatibility with early 2.x ↵Serhiy Storchaka2014-01-201-17/+0
|\ \ | |/ | | | | | | | | | | versions. Removed backward compatibility alias curses.window.nooutrefresh which should be removed in 2.3.
| * Issue #20315: Removed support for backward compatibility with early 2.x ↵Serhiy Storchaka2014-01-201-17/+0
| | | | | | | | versions.
* | Merged fix for issue #18260 from 3.3Łukasz Langa2013-06-231-2/+2
|\ \ | |/
| * Fixed issue #18260: configparser TypeError on source name specified as bytesŁukasz Langa2013-06-231-2/+2
| |
* | fix character index in ExtendedInterpolation's exception messageŁukasz Langa2013-04-231-1/+1
|\ \ | |/
| * fix character index in ExtendedInterpolation's exception messageŁukasz Langa2013-04-231-1/+1
| |
* | Merged section order preservation fix when using `__setitem__` (issue #16820)Łukasz Langa2013-01-011-2/+2
|\ \ | |/
| * configparser: preserve section order when using `__setitem__` (issue #16820)Łukasz Langa2013-01-011-2/+2
| |
* | Merged `parser['DEFAULT'].__setitem__` fix (issue #16820) from 3.3.Łukasz Langa2012-12-311-1/+4
|\ \ | |/
| * Fixes `__setitem__` on parser['DEFAULT'] reported in issue #16820.Łukasz Langa2012-12-311-1/+4
| |
* | Merged `parser.clean()` fix (issue #16820) from 3.2 through 3.3.Łukasz Langa2012-12-311-0/+13
|\ \ | |/
| * Merged `parser.clean()` fix (issue #16820) from 3.2.Łukasz Langa2012-12-311-0/+13
| |\
| | * Fixes `parser.clean()` reported in issue #16820.Łukasz Langa2012-12-311-0/+13
| | |
* | | Merged fix for #15803 from 3.2 through 3.3Łukasz Langa2012-12-311-4/+3
|\ \ \ | |/ /
| * | Merged fix for #15803 from 3.2Łukasz Langa2012-12-311-4/+3
| |\ \ | | |/
| | * Fixes issue #15803: incorrect `ConfigParser.items()` docstringŁukasz Langa2012-12-311-4/+3
| | |
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
|/ /
* | Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occursŁukasz Langa2012-07-071-6/+14
| | | | | | | | earlier without preceding space.
* | Merge with 3.2.Ezio Melotti2011-10-191-1/+1
|\ \ | |/
| * Remove duplication.Ezio Melotti2011-10-191-1/+1
| |
* | Merged minor cleanups from 3.2.Łukasz Langa2011-04-291-2/+0
|\ \ | |/
| * Removed debugging leftovers.Łukasz Langa2011-04-291-2/+0
| |
* | Merged solution for #11324 from 3.2.Łukasz Langa2011-04-281-4/+5
|\ \ | |/
| * Closes #11324: ConfigParser(interpolation=None) doesn't work.Łukasz Langa2011-04-281-4/+5
| | | | | | | | Initial patches by Tobias Brink. Thanks!
* | Merged solution for #11858 from 3.2.Łukasz Langa2011-04-281-3/+5
|\ \ | |/
| * Closes #11858: configparser.ExtendedInterpolation and section case.Łukasz Langa2011-04-281-3/+5
| | | | | | | | Patch by ゆかり ぴんく魔女. Thanks!
* | Merged #11670 from 3.2Łukasz Langa2011-04-271-4/+4
|\ \ | |/
| * Closes #11670: configparser read_file now iterates over f.Łukasz Langa2011-04-271-4/+4
| |
| * Issue #11089: Fix performance issue limiting the use of ConfigParser()Raymond Hettinger2011-02-211-8/+9
| | | | | | | | with large config files.
* | Issue #11297: Add collections.ChainMap()Raymond Hettinger2011-02-261-1/+1
| |
* | Fix imports from collections.abcRaymond Hettinger2011-02-231-1/+2
| |
* | Issue #11089: Fix performance issue limiting the use of ConfigParser()Raymond Hettinger2011-02-211-8/+9
|/ | | | with large config files.
* 100% test coverage, better mapping protocol compatibility, some minor bugfixesŁukasz Langa2010-12-171-17/+23
|
* configparser API cleanup: default values now sensible, slightly incompatible.Łukasz Langa2010-12-171-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 Langa2010-12-161-31/+22
| | | | Life is beatiful once again.
* configparser: mapping protocol access get() handles configparser-specific ↵Łukasz Langa2010-12-041-6/+16
| | | | arguments as well
* configparser: fixed inconsistency where in SafeConfigParser option valuesŁukasz Langa2010-12-041-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 Langa2010-12-041-8/+4
|