1. a26b3f1 Issue #20363. Fixed BytesWarning triggerred by test suite. by Serhiy Storchaka · 10 years ago
  2. bc27a05 Issue #20363. Fixed BytesWarning triggerred by test suite. by Serhiy Storchaka · 10 years ago
  3. ab0ac27 Issue #20315: Removed support for backward compatibility with early 2.x versions. by Serhiy Storchaka · 10 years ago
  4. 7e52705 Issue #20315: Removed support for backward compatibility with early 2.x versions. by Serhiy Storchaka · 10 years ago
  5. 8227696 Merged fix for issue #18260 from 3.3 by Łukasz Langa · 11 years ago
  6. f9b4eb4 Fixed issue #18260: configparser TypeError on source name specified as bytes by Łukasz Langa · 11 years ago
  7. f3d8fb1 fix character index in ExtendedInterpolation's exception message by Łukasz Langa · 11 years ago
  8. fa60818 fix character index in ExtendedInterpolation's exception message by Łukasz Langa · 11 years ago
  9. 6e410a2 Merged section order preservation fix when using `__setitem__` (issue #16820) by Łukasz Langa · 12 years ago
  10. a821f82 configparser: preserve section order when using `__setitem__` (issue #16820) by Łukasz Langa · 12 years ago
  11. 8d51897 Merged `parser['DEFAULT'].__setitem__` fix (issue #16820) from 3.3. by Łukasz Langa · 12 years ago
  12. 0210194 Fixes `__setitem__` on parser['DEFAULT'] reported in issue #16820. by Łukasz Langa · 12 years ago
  13. 1dce000 Merged `parser.clean()` fix (issue #16820) from 3.2 through 3.3. by Łukasz Langa · 12 years ago
  14. 0dc5ab4 Merged `parser.clean()` fix (issue #16820) from 3.2. by Łukasz Langa · 12 years ago
  15. 3a8479a Fixes `parser.clean()` reported in issue #16820. by Łukasz Langa · 12 years ago
  16. 641bb66 Merged fix for #15803 from 3.2 through 3.3 by Łukasz Langa · 12 years ago
  17. 97eefc1 Merged fix for #15803 from 3.2 by Łukasz Langa · 12 years ago
  18. 3057469 Fixes issue #15803: incorrect `ConfigParser.items()` docstring by Łukasz Langa · 12 years ago
  19. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  20. cba2432 Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occurs by Łukasz Langa · 12 years ago
  21. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  22. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  23. 82710c5 Merged minor cleanups from 3.2. by Łukasz Langa · 13 years ago
  24. 5c7419d Removed debugging leftovers. by Łukasz Langa · 13 years ago
  25. 70eb79c Merged solution for #11324 from 3.2. by Łukasz Langa · 13 years ago
  26. 1aa422f Closes #11324: ConfigParser(interpolation=None) doesn't work. by Łukasz Langa · 13 years ago
  27. 50c7562 Merged solution for #11858 from 3.2. by Łukasz Langa · 13 years ago
  28. e698cd5 Closes #11858: configparser.ExtendedInterpolation and section case. by Łukasz Langa · 13 years ago
  29. 29050d7 Merged #11670 from 3.2 by Łukasz Langa · 13 years ago
  30. daab1c8 Closes #11670: configparser read_file now iterates over f. by Łukasz Langa · 13 years ago
  31. 9fe1ccf Issue #11297: Add collections.ChainMap() by Raymond Hettinger · 13 years ago
  32. 57d1a88 Fix imports from collections.abc by Raymond Hettinger · 13 years ago
  33. ddb5240 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 13 years ago
  34. e660360 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 13 years ago
  35. 71b37a5 100% test coverage, better mapping protocol compatibility, some minor bugfixes by Łukasz Langa · 14 years ago
  36. b25a791 configparser API cleanup: default values now sensible, slightly incompatible. by Łukasz Langa · 14 years ago
  37. 7f64c8a Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser. by Łukasz Langa · 14 years ago
  38. 2f0fd0f configparser: mapping protocol access get() handles configparser-specific arguments as well by Łukasz Langa · 14 years ago
  39. 2cf9ddb configparser: fixed inconsistency where in SafeConfigParser option values by Łukasz Langa · 14 years ago
  40. 24bcc61 configparser: minute refactoring of RawConfigParser.items() by Łukasz Langa · 14 years ago
  41. 3a11e71 %s -> %r correction after review by Éric Araujo by Łukasz Langa · 14 years ago
  42. b6a6f5f Issue 10499: Modular interpolation in configparser by Łukasz Langa · 14 years ago
  43. a73dc9d configparser: read-only attributes to get the section name and parser from a SectionProxy instance by Łukasz Langa · 14 years ago
  44. 5c86339 Issue #10489: removed broken `__name__` support from configparser by Łukasz Langa · 14 years ago
  45. c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 14 years ago
  46. 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
  47. 26d513c Issue #5412: extend configparser to support mapping access by Łukasz Langa · 14 years ago
  48. 42d5445 Fix typo and add test case. by Florent Xicluna · 14 years ago
  49. cc645b9 add consistent support for the vars and default arguments on all by Fred Drake · 14 years ago
  50. 8844441 fix output from RawConfigParser.write and ConfigParser.write for None by Fred Drake · 14 years ago
  51. a492362 issue #9452: by Fred Drake · 14 years ago
  52. 470a123 #1090076: explain the behavior of *vars* in get() better. by Georg Brandl · 14 years ago
  53. 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
  54. f206d0e Fix for r83202: improve the handling of empty lines. by Georg Brandl · 14 years ago
  55. 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
  56. 9a27b0c Fix #7113. Patch by Łukasz Langa. by Brian Curtin · 14 years ago
  57. bd6c079 Issue #4686 - add .args to exceptions in the configparsermodule by Michael Foord · 14 years ago
  58. 03c44a3 Merged revisions 78232 via svnmerge from by Fred Drake · 14 years ago
  59. 68998bf Merged revisions 71564 via svnmerge from by Georg Brandl · 15 years ago
  60. 1f9fa31 Merged revisions 71537 via svnmerge from by Georg Brandl · 15 years ago
  61. ff23e8c Fix bootstrapping problem where setup.py was using configparser by Raymond Hettinger · 15 years ago
  62. 0663a1e Let configparser use ordered dicts by default. by Raymond Hettinger · 15 years ago
  63. 1d1eaa4 Renamed ConfigParser to configparser. by Alexandre Vassalotti · 16 years ago[Renamed from Lib/ConfigParser.py]
  64. 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 · 16 years ago
  65. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  66. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  67. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  68. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  69. ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 17 years ago
  70. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 17 years ago
  71. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  72. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  73. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  74. 7eb4b7d Fix all wrong instances of "it's". by Georg Brandl · 19 years ago
  75. 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
  76. 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
  77. 8290314 ConfigParser: by Fred Drake · 20 years ago
  78. abc086f ConfigParser: by Fred Drake · 20 years ago
  79. bc12b01 ConfigParser: by Fred Drake · 20 years ago
  80. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  81. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  82. 8c4da53 Make both items() methods return lists; one had changed to return an by Fred Drake · 21 years ago
  83. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  84. 99c2d53 SF patch #790443: add SafeConfigParser to __all__ by Raymond Hettinger · 21 years ago
  85. 10f3018 Fix arguments for instantiating InterpolationSyntaxError by Neal Norwitz · 21 years ago
  86. e2c6491 Further cleanup of exceptions. All interpolation-related exceptions by Fred Drake · 22 years ago
  87. 00dc5a9 ConfigParser._interpolate(): Pass the missing key to the by Fred Drake · 22 years ago
  88. 8d5dd98 - added InterpolationSyntaxError to __all__ - added docstring to exceptions by Fred Drake · 22 years ago
  89. ce1d944 Add missing InterpolationSyntaxError. XXX Not sure this is correct. by Neal Norwitz · 22 years ago
  90. f680cc4 Update doc for getboolean() to match code (ie, returning True/False) by Neal Norwitz · 22 years ago
  91. 230a60c Whitespace normalization. by Tim Peters · 22 years ago
  92. 9050a51 Fix docstring typos by Andrew M. Kuchling · 22 years ago
  93. 0eebd5c Implement a safer and more predictable interpolation approach. by Fred Drake · 22 years ago
  94. df393bd According to the docs, __name__ is not exposed via the API except by Fred Drake · 22 years ago
  95. fce6557 Re-factor: Use a RawConfigParser base class and make ConfigParser a by Fred Drake · 22 years ago
  96. 176916a Allow internal whitespace in keys. by Fred Drake · 22 years ago
  97. 2ca041f items(): New method, provided by Gustavo Niemeyer in SF bug #545096. by Fred Drake · 22 years ago
  98. c2ff905 has_option(): Use the option name transform consistently. by Fred Drake · 22 years ago
  99. 65230a2 Remove uses of the string and types modules: by Walter Dörwald · 22 years ago
  100. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago