- 33cd058 bpo-32108: Don't clear configparser values if key is assigned to itself (GH-7588) by Cheryl Sabella · 6 years ago
- 214f18e bpo-33802: Do not interpolate in ConfigParser while reading defaults (GH-7524) by Łukasz Langa · 6 years ago
- 3a5b0d8 bpo-33504: Migrate configparser from OrderedDict to dict. (#6819) by John Reese · 6 years ago
- 1d4a733 bpo-33251: Prevent ConfigParser.items returning items present in vars. (#6446) by Chris Bradbury · 7 years ago
- e314853 bpo-31307: Make ConfigParser.read() accept bytes objects (GH-3420) by Vincent Michel · 7 years ago
- a5fab17 bpo-23835: Restore legacy defaults= behavior for RawConfigParser (#3191) by Łukasz Langa · 7 years ago
- 44e6ad8 bpo-23835: Enforce that configparser defaults are strings (#2558) by James Tocknell · 7 years ago
- 5affd23 bpo-29762: More use "raise from None". (#569) by Serhiy Storchaka · 8 years ago
- 85b8d01 bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) by David Ellis · 8 years ago
- 47a9a4b Fixes #24142: [configparser] always join multiline values to not leave the parser in an invalid state by Łukasz Langa · 8 years ago
- f7a9267 Issue #21159: Improve message in configparser.InterpolationMissingOptionError. by Robert Collins · 9 years ago
- ac37ba0 Issue #21159: Improve message in configparser.InterpolationMissingOptionError. by Robert Collins · 9 years ago
- dfdd2f7 Closes #18159: ConfigParser getters not available on SectionProxy by Łukasz Langa · 10 years ago
- 949053b Fix #19546: onfigparser exceptions expose implementation details. Patch by Claudiu Popa. by Łukasz Langa · 10 years ago
- a26b3f1 Issue #20363. Fixed BytesWarning triggerred by test suite. by Serhiy Storchaka · 11 years ago
- bc27a05 Issue #20363. Fixed BytesWarning triggerred by test suite. by Serhiy Storchaka · 11 years ago
- ab0ac27 Issue #20315: Removed support for backward compatibility with early 2.x versions. by Serhiy Storchaka · 11 years ago
- 7e52705 Issue #20315: Removed support for backward compatibility with early 2.x versions. by Serhiy Storchaka · 11 years ago
- 8227696 Merged fix for issue #18260 from 3.3 by Łukasz Langa · 11 years ago
- f9b4eb4 Fixed issue #18260: configparser TypeError on source name specified as bytes by Łukasz Langa · 11 years ago
- f3d8fb1 fix character index in ExtendedInterpolation's exception message by Łukasz Langa · 12 years ago
- fa60818 fix character index in ExtendedInterpolation's exception message by Łukasz Langa · 12 years ago
- 6e410a2 Merged section order preservation fix when using `__setitem__` (issue #16820) by Łukasz Langa · 12 years ago
- a821f82 configparser: preserve section order when using `__setitem__` (issue #16820) by Łukasz Langa · 12 years ago
- 8d51897 Merged `parser['DEFAULT'].__setitem__` fix (issue #16820) from 3.3. by Łukasz Langa · 12 years ago
- 0210194 Fixes `__setitem__` on parser['DEFAULT'] reported in issue #16820. by Łukasz Langa · 12 years ago
- 1dce000 Merged `parser.clean()` fix (issue #16820) from 3.2 through 3.3. by Łukasz Langa · 12 years ago
- 0dc5ab4 Merged `parser.clean()` fix (issue #16820) from 3.2. by Łukasz Langa · 12 years ago
- 3a8479a Fixes `parser.clean()` reported in issue #16820. by Łukasz Langa · 12 years ago
- 641bb66 Merged fix for #15803 from 3.2 through 3.3 by Łukasz Langa · 12 years ago
- 97eefc1 Merged fix for #15803 from 3.2 by Łukasz Langa · 12 years ago
- 3057469 Fixes issue #15803: incorrect `ConfigParser.items()` docstring by Łukasz Langa · 12 years ago
- f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
- cba2432 Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occurs by Łukasz Langa · 12 years ago
- f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
- e130a52 Remove duplication. by Ezio Melotti · 13 years ago
- 82710c5 Merged minor cleanups from 3.2. by Łukasz Langa · 14 years ago
- 5c7419d Removed debugging leftovers. by Łukasz Langa · 14 years ago
- 70eb79c Merged solution for #11324 from 3.2. by Łukasz Langa · 14 years ago
- 1aa422f Closes #11324: ConfigParser(interpolation=None) doesn't work. by Łukasz Langa · 14 years ago
- 50c7562 Merged solution for #11858 from 3.2. by Łukasz Langa · 14 years ago
- e698cd5 Closes #11858: configparser.ExtendedInterpolation and section case. by Łukasz Langa · 14 years ago
- 29050d7 Merged #11670 from 3.2 by Łukasz Langa · 14 years ago
- daab1c8 Closes #11670: configparser read_file now iterates over f. by Łukasz Langa · 14 years ago
- 9fe1ccf Issue #11297: Add collections.ChainMap() by Raymond Hettinger · 14 years ago
- 57d1a88 Fix imports from collections.abc by Raymond Hettinger · 14 years ago
- ddb5240 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 14 years ago
- e660360 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 14 years ago
- 71b37a5 100% test coverage, better mapping protocol compatibility, some minor bugfixes by Łukasz Langa · 14 years ago
- b25a791 configparser API cleanup: default values now sensible, slightly incompatible. by Łukasz Langa · 14 years ago
- 7f64c8a Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser. by Łukasz Langa · 14 years ago
- 2f0fd0f configparser: mapping protocol access get() handles configparser-specific arguments as well by Łukasz Langa · 14 years ago
- 2cf9ddb configparser: fixed inconsistency where in SafeConfigParser option values by Łukasz Langa · 14 years ago
- 24bcc61 configparser: minute refactoring of RawConfigParser.items() by Łukasz Langa · 14 years ago
- 3a11e71 %s -> %r correction after review by Éric Araujo by Łukasz Langa · 14 years ago
- b6a6f5f Issue 10499: Modular interpolation in configparser by Łukasz Langa · 14 years ago
- a73dc9d configparser: read-only attributes to get the section name and parser from a SectionProxy instance by Łukasz Langa · 14 years ago
- 5c86339 Issue #10489: removed broken `__name__` support from configparser by Łukasz Langa · 14 years ago
- c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 14 years ago
- 49afa38 configparser.py: changed PendingDeprecationWarnings to DeprecationWarnings, via http://mail.python.org/pipermail/python-dev/2010-November/105391.html by Łukasz Langa · 14 years ago
- 26d513c Issue #5412: extend configparser to support mapping access by Łukasz Langa · 14 years ago
- 42d5445 Fix typo and add test case. by Florent Xicluna · 14 years ago
- cc645b9 add consistent support for the vars and default arguments on all by Fred Drake · 14 years ago
- 8844441 fix output from RawConfigParser.write and ConfigParser.write for None by Fred Drake · 14 years ago
- a492362 issue #9452: by Fred Drake · 14 years ago
- 470a123 #1090076: explain the behavior of *vars* in get() better. by Georg Brandl · 14 years ago
- 8dcaa73 #9411: allow selecting an encoding for configparser files. Also adds a new test config file to test special cases. by Georg Brandl · 14 years ago
- f206d0e Fix for r83202: improve the handling of empty lines. by Georg Brandl · 14 years ago
- 96a60ae #1682942: add some ConfigParser features: alternate delimiters, alternate 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. by Georg Brandl · 14 years ago
- 9a27b0c Fix #7113. Patch by Łukasz Langa. by Brian Curtin · 14 years ago
- bd6c079 Issue #4686 - add .args to exceptions in the configparsermodule by Michael Foord · 14 years ago
- 03c44a3 Merged revisions 78232 via svnmerge from by Fred Drake · 15 years ago
- 68998bf Merged revisions 71564 via svnmerge from by Georg Brandl · 16 years ago
- 1f9fa31 Merged revisions 71537 via svnmerge from by Georg Brandl · 16 years ago
- ff23e8c Fix bootstrapping problem where setup.py was using configparser by Raymond Hettinger · 16 years ago
- 0663a1e Let configparser use ordered dicts by default. by Raymond Hettinger · 16 years ago
- 1d1eaa4 Renamed ConfigParser to configparser. by Alexandre Vassalotti · 16 years ago[Renamed from Lib/ConfigParser.py]
- 90c3d9b Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60969,60971-60976 via svnmerge from by Christian Heimes · 17 years ago
- 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
- ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
- 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 18 years ago
- ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 18 years ago
- cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
- b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- 7eb4b7d Fix all wrong instances of "it's". by Georg Brandl · 19 years ago
- 1cbf206 SF bug #997050: Document, test, & check for non-string values in ConfigParser. Moved the new string-only restriction added in rev. 1.65 to the SafeConfigParser class, leaving existing ConfigParser & RawConfigParser behavior alone, and documented the conditions under which non-string values work. by David Goodger · 20 years ago
- 68a1abd SF bug #1017864: ConfigParser now correctly handles default keys, processing them with ``ConfigParser.optionxform`` when supplied, consistent with the handling of config file entries and runtime-set options. by David Goodger · 20 years ago
- 8290314 ConfigParser: by Fred Drake · 20 years ago
- abc086f ConfigParser: by Fred Drake · 20 years ago
- bc12b01 ConfigParser: by Fred Drake · 20 years ago
- bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 21 years ago
- 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
- 8c4da53 Make both items() methods return lists; one had changed to return an by Fred Drake · 21 years ago
- f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
- 99c2d53 SF patch #790443: add SafeConfigParser to __all__ by Raymond Hettinger · 21 years ago
- 10f3018 Fix arguments for instantiating InterpolationSyntaxError by Neal Norwitz · 21 years ago
- e2c6491 Further cleanup of exceptions. All interpolation-related exceptions by Fred Drake · 22 years ago