1. b6a6f5f Issue 10499: Modular interpolation in configparser by Łukasz Langa · 14 years ago
  2. a73dc9d configparser: read-only attributes to get the section name and parser from a SectionProxy instance by Łukasz Langa · 14 years ago
  3. 5c86339 Issue #10489: removed broken `__name__` support from configparser by Łukasz Langa · 14 years ago
  4. c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 14 years ago
  5. 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
  6. 26d513c Issue #5412: extend configparser to support mapping access by Łukasz Langa · 14 years ago
  7. 42d5445 Fix typo and add test case. by Florent Xicluna · 14 years ago
  8. cc645b9 add consistent support for the vars and default arguments on all by Fred Drake · 14 years ago
  9. 8844441 fix output from RawConfigParser.write and ConfigParser.write for None by Fred Drake · 14 years ago
  10. a492362 issue #9452: by Fred Drake · 14 years ago
  11. 470a123 #1090076: explain the behavior of *vars* in get() better. by Georg Brandl · 14 years ago
  12. 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
  13. f206d0e Fix for r83202: improve the handling of empty lines. by Georg Brandl · 14 years ago
  14. 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
  15. 9a27b0c Fix #7113. Patch by Łukasz Langa. by Brian Curtin · 14 years ago
  16. bd6c079 Issue #4686 - add .args to exceptions in the configparsermodule by Michael Foord · 14 years ago
  17. 03c44a3 Merged revisions 78232 via svnmerge from by Fred Drake · 14 years ago
  18. 68998bf Merged revisions 71564 via svnmerge from by Georg Brandl · 15 years ago
  19. 1f9fa31 Merged revisions 71537 via svnmerge from by Georg Brandl · 15 years ago
  20. ff23e8c Fix bootstrapping problem where setup.py was using configparser by Raymond Hettinger · 15 years ago
  21. 0663a1e Let configparser use ordered dicts by default. by Raymond Hettinger · 15 years ago
  22. 1d1eaa4 Renamed ConfigParser to configparser. by Alexandre Vassalotti · 16 years ago[Renamed from Lib/ConfigParser.py]
  23. 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
  24. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  25. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  26. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  27. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  28. ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 17 years ago
  29. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 17 years ago
  30. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  31. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  32. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  33. 7eb4b7d Fix all wrong instances of "it's". by Georg Brandl · 19 years ago
  34. 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
  35. 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
  36. 8290314 ConfigParser: by Fred Drake · 20 years ago
  37. abc086f ConfigParser: by Fred Drake · 20 years ago
  38. bc12b01 ConfigParser: by Fred Drake · 20 years ago
  39. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  40. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  41. 8c4da53 Make both items() methods return lists; one had changed to return an by Fred Drake · 21 years ago
  42. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  43. 99c2d53 SF patch #790443: add SafeConfigParser to __all__ by Raymond Hettinger · 21 years ago
  44. 10f3018 Fix arguments for instantiating InterpolationSyntaxError by Neal Norwitz · 21 years ago
  45. e2c6491 Further cleanup of exceptions. All interpolation-related exceptions by Fred Drake · 22 years ago
  46. 00dc5a9 ConfigParser._interpolate(): Pass the missing key to the by Fred Drake · 22 years ago
  47. 8d5dd98 - added InterpolationSyntaxError to __all__ - added docstring to exceptions by Fred Drake · 22 years ago
  48. ce1d944 Add missing InterpolationSyntaxError. XXX Not sure this is correct. by Neal Norwitz · 22 years ago
  49. f680cc4 Update doc for getboolean() to match code (ie, returning True/False) by Neal Norwitz · 22 years ago
  50. 230a60c Whitespace normalization. by Tim Peters · 22 years ago
  51. 9050a51 Fix docstring typos by Andrew M. Kuchling · 22 years ago
  52. 0eebd5c Implement a safer and more predictable interpolation approach. by Fred Drake · 22 years ago
  53. df393bd According to the docs, __name__ is not exposed via the API except by Fred Drake · 22 years ago
  54. fce6557 Re-factor: Use a RawConfigParser base class and make ConfigParser a by Fred Drake · 22 years ago
  55. 176916a Allow internal whitespace in keys. by Fred Drake · 22 years ago
  56. 2ca041f items(): New method, provided by Gustavo Niemeyer in SF bug #545096. by Fred Drake · 22 years ago
  57. c2ff905 has_option(): Use the option name transform consistently. by Fred Drake · 22 years ago
  58. 65230a2 Remove uses of the string and types modules: by Walter Dörwald · 22 years ago
  59. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  60. 0f4940c Replaced boolean test with 'is None' by Raymond Hettinger · 22 years ago
  61. d451ec1 Clean up uses of some deprecated features. by Fred Drake · 22 years ago
  62. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  63. 00824ed [Bug #523301] ConfigParser.write() produces broken output for values that by Andrew M. Kuchling · 22 years ago
  64. e0c446b Whitespace normalization. by Tim Peters · 23 years ago
  65. fb06f75 Apply modified SF patch 467580: ConfigParser.getboolean(): FALSE, TRUE. by Guido van Rossum · 23 years ago
  66. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  67. 7c2cf73 Remove redefinition of has_option() method by Andrew M. Kuchling · 23 years ago
  68. 02d893c Patch #444359: Remove unused imports. by Martin v. Löwis · 23 years ago
  69. beb6713 When reading a continuation line, make sure we still use the transformed by Fred Drake · 23 years ago
  70. 3c823aa Make sure ConfigParser uses .optionxform() consistently; this affects by Fred Drake · 23 years ago
  71. d4df94b Be much more permissive in what we accept in section names; there has been by Fred Drake · 23 years ago
  72. d83bbbf Allow square brackets in the option names; this makes it possible to use by Fred Drake · 23 years ago
  73. f296019 Correction after second code path test. by Eric S. Raymond · 23 years ago
  74. 9eb54d9 String method conversion. by Eric S. Raymond · 23 years ago
  75. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  76. 88869f9 Whitespace normalization. by Tim Peters · 23 years ago
  77. 7c1e5ad Make ConfigParser.Error inherit from Exception. by Fred Drake · 24 years ago
  78. ff4a23b remove_option(): Use the right variable name for the option name! by Fred Drake · 24 years ago
  79. 2a37f9f Allow spaces in section names. by Fred Drake · 24 years ago
  80. 4126736 When reading the file, option names were not passed through by Guido van Rossum · 24 years ago
  81. ff4df6d Small fixes by Petru Paler (patch #100946) checked in with esr's approval. by Thomas Wouters · 24 years ago
  82. 649685a ConfigParser enhancements to edit existing configs, part 2 by Eric S. Raymond · 24 years ago
  83. 417c489 Give ConfigParser the capability to set as well as read options, and to write by Eric S. Raymond · 24 years ago
  84. fd4114e ConfigParser.read(): by Fred Drake · 24 years ago
  85. 820314e allow comments beginning with ; in key: value as well as key = value by Jeremy Hylton · 24 years ago
  86. 1ab41fc Fix comments relating to the specific regexs used to parse section and by Fred Drake · 24 years ago
  87. c517b9b (Finally!) Changes related to the ConfigParser/INI-file topics by Fred Drake · 24 years ago
  88. 2539451 fixed a typo in a docstring, and slightly expanded the module by Barry Warsaw · 25 years ago
  89. a5a24b7 Added has_option(); fix bug in get() which botched interpolation if by Guido van Rossum · 25 years ago
  90. 6a8d84b Urmpfh! by Guido van Rossum · 25 years ago
  91. 2438a48 ConfigParser.read(): Don't mask IOError exceptions. by Fred Drake · 25 years ago
  92. 9e480ad Patch suggested (and partially provided) by Lars Damerow: instead of by Guido van Rossum · 25 years ago
  93. 72ce858 Fix by Chris Petrilli (to his own code) to limit the number of by Guido van Rossum · 25 years ago
  94. c0780ac From: Mike Orr <mso@oz.net> by Guido van Rossum · 25 years ago
  95. f09f6a5 Re-format the module docstring and document the new get() argument. by Barry Warsaw · 25 years ago
  96. e6506e7 Patch by Chris Petrilli (not really tested since I don't know this by Guido van Rossum · 25 years ago
  97. 6446212 Time machine experiment. Use '__name__' as the special key (always by Barry Warsaw · 26 years ago
  98. bfa3f6b Several changes: by Barry Warsaw · 26 years ago
  99. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  100. 5da0f50 get(): Fixed a bug in the merge order of the dictionaries. This makes by Barry Warsaw · 26 years ago