index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
configparser.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix typo in configparser module docstring (#105652)
litlighilit
2023-06-11
1
-1/+1
*
gh-105407: Remove unused imports in the stdlib (#105411)
Victor Stinner
2023-06-06
1
-1/+0
*
gh-104886: Remove deprecated configparser.LegacyInterpolation (#104887)
Hugo van Kemenade
2023-05-26
1
-48/+1
*
gh-100520: Fix `rst` markup in `configparser` docstrings (#100524)
Nikita Sobolev
2022-12-26
1
-36/+37
*
gh-89336: Remove configparser APIs that were deprecated for 3.12 (#92503)
Gregory P. Smith
2022-06-21
1
-56/+5
*
bpo-46607: Add DeprecationWarning for LegacyInterpolation, deprecated in docs...
Hugo van Kemenade
2022-04-05
1
-0/+9
*
bpo-41086: Add exception for uninstantiated interpolation (configparser) (GH-...
Brian Faherty
2022-02-17
1
-0/+5
*
bpo-45173: Keep configparser deprecations until Python 3.12 (GH-30952)
Hugo van Kemenade
2022-02-02
1
-1/+44
*
bpo-45173 Remove configparser deprecations (GH-28292)
Hugo van Kemenade
2021-09-13
1
-44/+1
*
bpo-38741: Definition of multiple ']' in header configparser (GH-17129)
jsnklln
2021-07-13
1
-1/+1
*
bpo-41963: document that ConfigParser strips off comments (GH-26197)
Jürgen Gmach
2021-05-18
1
-1/+4
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
1
-0/+1
*
fix typo in configparser doc (GH-12154)
Woko
2019-03-04
1
-1/+1
*
bpo-27351: Fix ConfigParser.read() documentation and docstring (GH-8123)
Zackery Spytz
2018-09-29
1
-4/+4
*
bpo-32108: Don't clear configparser values if key is assigned to itself (GH-7...
Cheryl Sabella
2018-06-12
1
-1/+2
*
bpo-33802: Do not interpolate in ConfigParser while reading defaults (GH-7524)
Łukasz Langa
2018-06-08
1
-2/+10
*
bpo-33504: Migrate configparser from OrderedDict to dict. (#6819)
John Reese
2018-06-05
1
-1/+2
*
bpo-33251: Prevent ConfigParser.items returning items present in vars. (#6446)
Chris Bradbury
2018-04-23
1
-1/+2
*
bpo-31307: Make ConfigParser.read() accept bytes objects (GH-3420)
Vincent Michel
2017-11-02
1
-1/+1
*
bpo-23835: Restore legacy defaults= behavior for RawConfigParser (#3191)
Łukasz Langa
2017-08-24
1
-1/+12
*
bpo-23835: Enforce that configparser defaults are strings (#2558)
James Tocknell
2017-08-21
1
-3/+2
*
bpo-29762: More use "raise from None". (#569)
Serhiy Storchaka
2017-04-05
1
-1/+1
*
bpo-29623: Make PathLike objects work with ConfigParser.read() (#242)
David Ellis
2017-03-03
1
-1/+4
*
Fixes #24142: [configparser] always join multiline values to not leave the pa...
Łukasz Langa
2016-11-26
1
-1/+1
*
Issue #21159: Improve message in configparser.InterpolationMissingOptionError.
Robert Collins
2015-08-13
1
-15/+14
|
\
|
*
Issue #21159: Improve message in configparser.InterpolationMissingOptionError.
Robert Collins
2015-08-13
1
-15/+14
*
|
Closes #18159: ConfigParser getters not available on SectionProxy
Łukasz Langa
2014-09-15
1
-42/+128
*
|
Fix #19546: onfigparser exceptions expose implementation details. Patch by C...
Łukasz Langa
2014-09-04
1
-6/+6
|
/
*
Issue #20363. Fixed BytesWarning triggerred by test suite.
Serhiy Storchaka
2014-02-06
1
-2/+2
|
\
|
*
Issue #20363. Fixed BytesWarning triggerred by test suite.
Serhiy Storchaka
2014-02-06
1
-2/+2
*
|
Issue #20315: Removed support for backward compatibility with early 2.x versi...
Serhiy Storchaka
2014-01-20
1
-17/+0
|
\
\
|
|
/
|
*
Issue #20315: Removed support for backward compatibility with early 2.x versi...
Serhiy Storchaka
2014-01-20
1
-17/+0
*
|
Merged fix for issue #18260 from 3.3
Łukasz Langa
2013-06-23
1
-2/+2
|
\
\
|
|
/
|
*
Fixed issue #18260: configparser TypeError on source name specified as bytes
Łukasz Langa
2013-06-23
1
-2/+2
*
|
fix character index in ExtendedInterpolation's exception message
Łukasz Langa
2013-04-23
1
-1/+1
|
\
\
|
|
/
|
*
fix character index in ExtendedInterpolation's exception message
Łukasz Langa
2013-04-23
1
-1/+1
*
|
Merged section order preservation fix when using `__setitem__` (issue #16820)
Łukasz Langa
2013-01-01
1
-2/+2
|
\
\
|
|
/
|
*
configparser: preserve section order when using `__setitem__` (issue #16820)
Łukasz Langa
2013-01-01
1
-2/+2
*
|
Merged `parser['DEFAULT'].__setitem__` fix (issue #16820) from 3.3.
Łukasz Langa
2012-12-31
1
-1/+4
|
\
\
|
|
/
|
*
Fixes `__setitem__` on parser['DEFAULT'] reported in issue #16820.
Łukasz Langa
2012-12-31
1
-1/+4
*
|
Merged `parser.clean()` fix (issue #16820) from 3.2 through 3.3.
Łukasz Langa
2012-12-31
1
-0/+13
|
\
\
|
|
/
|
*
Merged `parser.clean()` fix (issue #16820) from 3.2.
Łukasz Langa
2012-12-31
1
-0/+13
|
|
\
|
|
*
Fixes `parser.clean()` reported in issue #16820.
Łukasz Langa
2012-12-31
1
-0/+13
*
|
|
Merged fix for #15803 from 3.2 through 3.3
Łukasz Langa
2012-12-31
1
-4/+3
|
\
\
\
|
|
/
/
|
*
|
Merged fix for #15803 from 3.2
Łukasz Langa
2012-12-31
1
-4/+3
|
|
\
\
|
|
|
/
|
|
*
Fixes issue #15803: incorrect `ConfigParser.items()` docstring
Łukasz Langa
2012-12-31
1
-4/+3
*
|
|
Replace IOError with OSError (#16715)
Andrew Svetlov
2012-12-25
1
-1/+1
|
/
/
*
|
Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occurs
Łukasz Langa
2012-07-07
1
-6/+14
*
|
Merge with 3.2.
Ezio Melotti
2011-10-19
1
-1/+1
|
\
\
|
|
/
|
*
Remove duplication.
Ezio Melotti
2011-10-19
1
-1/+1
[next]