1. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  2. c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 14 years ago
  3. 26d513c Issue #5412: extend configparser to support mapping access by Łukasz Langa · 14 years ago
  4. d12a420 Fix encoding for test case added in r84967. by Florent Xicluna · 14 years ago
  5. 42d5445 Fix typo and add test case. by Florent Xicluna · 14 years ago
  6. cc645b9 add consistent support for the vars and default arguments on all by Fred Drake · 14 years ago
  7. 8844441 fix output from RawConfigParser.write and ConfigParser.write for None by Fred Drake · 14 years ago
  8. a492362 issue #9452: by Fred Drake · 14 years ago
  9. 7b280e9 Clarify comment in comments test case explaining comment semantics. by Georg Brandl · 14 years ago
  10. 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
  11. 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
  12. 9a27b0c Fix #7113. Patch by Łukasz Langa. by Brian Curtin · 14 years ago
  13. bd6c079 Issue #4686 - add .args to exceptions in the configparsermodule by Michael Foord · 14 years ago
  14. 03c44a3 Merged revisions 78232 via svnmerge from by Fred Drake · 14 years ago
  15. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  16. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  17. 1f9fa31 Merged revisions 71537 via svnmerge from by Georg Brandl · 15 years ago
  18. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  19. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  20. 1d1eaa4 Renamed ConfigParser to configparser. by Alexandre Vassalotti · 16 years ago
  21. 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
  22. f80680d Migrate remaining tests from UserDict.UserDict to collections.UserDict. by Raymond Hettinger · 17 years ago
  23. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  24. 5de48bd Simplify various spots where: str() is called on something by Walter Dörwald · 17 years ago
  25. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  26. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  27. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  28. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 18 years ago
  29. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  30. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  31. ab9b32c Whitespace normalization. by Tim Peters · 20 years ago
  32. 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
  33. 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
  34. 8290314 ConfigParser: by Fred Drake · 20 years ago
  35. abc086f ConfigParser: by Fred Drake · 20 years ago
  36. bc12b01 ConfigParser: by Fred Drake · 20 years ago
  37. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  38. 5478219 Add a test that InterpolationError is constructed properly and raised by Fred Drake · 22 years ago
  39. 0eebd5c Implement a safer and more predictable interpolation approach. by Fred Drake · 22 years ago
  40. 98e3b29 Add tests for both raw and non-raw versions of the items() methods. by Fred Drake · 22 years ago
  41. c6f2891 Convert to PyUnit. by Fred Drake · 22 years ago
  42. 3af0eb8 Added (very) minimal tests of the RawConfigParser class. by Fred Drake · 22 years ago
  43. 176916a Allow internal whitespace in keys. by Fred Drake · 22 years ago
  44. 309db06 Added regression test for SF bug #561822: has_option() case sensitive. by Fred Drake · 22 years ago
  45. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  46. 863ac44 Whitespace normalization. by Tim Peters · 22 years ago
  47. 1bf7117 As part of fixing bug #523301, add a simple test of ConfigParser.write() by Andrew M. Kuchling · 22 years ago
  48. 168bead Added tests that check getboolean() with the newly allowed values from by Fred Drake · 23 years ago
  49. beb6713 When reading a continuation line, make sure we still use the transformed by Fred Drake · 23 years ago
  50. 3c823aa Make sure ConfigParser uses .optionxform() consistently; this affects by Fred Drake · 23 years ago
  51. cc1f951 Test section name using some strange characters, including a backslash by Fred Drake · 23 years ago
  52. 95b96d3 Added options that use square brackets in their names; this ensures that by Fred Drake · 24 years ago
  53. 3d5f7e8 Add test cases for ConfigParser.remove_option() behavior. This includes by Fred Drake · 24 years ago
  54. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  55. d391a34 Remove change that had not been saved when the output was generated; by Fred Drake · 24 years ago
  56. 8ef6767 Regression test for ConfigParser module. by Fred Drake · 24 years ago