- cba2432 Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occurs by Łukasz Langa · 12 years ago
- e785195 #13760: picklability tests for configparser exceptions by Łukasz Langa · 13 years ago
- 82710c5 Merged minor cleanups from 3.2. by Łukasz Langa · 14 years ago
- 70eb79c Merged solution for #11324 from 3.2. by Łukasz Langa · 14 years ago
- e812bf7 Merged styling updates for #11670 from 3.2. by Łukasz Langa · 14 years ago
- 50c7562 Merged solution for #11858 from 3.2. by Łukasz Langa · 14 years ago
- 29050d7 Merged #11670 from 3.2 by Łukasz Langa · 14 years ago
- 16fe75e Have the test filename match the module filename. by Raymond Hettinger · 14 years ago[Renamed from Lib/test/test_cfgparser.py]
- 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
- 535c077 support for checking test coverage added. by Łukasz Langa · 14 years ago
- 2cf9ddb configparser: fixed inconsistency where in SafeConfigParser option values by Łukasz Langa · 14 years ago
- b6a6f5f Issue 10499: Modular interpolation in configparser by Łukasz Langa · 14 years ago
- 263cbdf Use assertCountEqual instead of assertItemsEqual by Ezio Melotti · 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
- b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
- c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 14 years ago
- 26d513c Issue #5412: extend configparser to support mapping access by Łukasz Langa · 14 years ago
- d12a420 Fix encoding for test case added in r84967. by Florent Xicluna · 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
- 7b280e9 Clarify comment in comments test case explaining comment semantics. 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
- 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
- b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
- 1f9fa31 Merged revisions 71537 via svnmerge from by Georg Brandl · 16 years ago
- 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 16 years ago
- ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
- 1d1eaa4 Renamed ConfigParser to configparser. by Alexandre Vassalotti · 16 years ago
- 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
- f80680d Migrate remaining tests from UserDict.UserDict to collections.UserDict. by Raymond Hettinger · 17 years ago
- 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
- 5de48bd Simplify various spots where: str() is called on something by Walter Dörwald · 17 years ago
- ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
- 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 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
- ab9b32c Whitespace normalization. by Tim Peters · 20 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
- 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago
- 5478219 Add a test that InterpolationError is constructed properly and raised by Fred Drake · 22 years ago
- 0eebd5c Implement a safer and more predictable interpolation approach. by Fred Drake · 22 years ago
- 98e3b29 Add tests for both raw and non-raw versions of the items() methods. by Fred Drake · 22 years ago
- c6f2891 Convert to PyUnit. by Fred Drake · 22 years ago
- 3af0eb8 Added (very) minimal tests of the RawConfigParser class. by Fred Drake · 22 years ago
- 176916a Allow internal whitespace in keys. by Fred Drake · 22 years ago
- 309db06 Added regression test for SF bug #561822: has_option() case sensitive. by Fred Drake · 22 years ago
- 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
- 863ac44 Whitespace normalization. by Tim Peters · 23 years ago
- 1bf7117 As part of fixing bug #523301, add a simple test of ConfigParser.write() by Andrew M. Kuchling · 23 years ago
- 168bead Added tests that check getboolean() with the newly allowed values from by Fred Drake · 23 years ago
- beb6713 When reading a continuation line, make sure we still use the transformed by Fred Drake · 23 years ago
- 3c823aa Make sure ConfigParser uses .optionxform() consistently; this affects by Fred Drake · 24 years ago
- cc1f951 Test section name using some strange characters, including a backslash by Fred Drake · 24 years ago
- 95b96d3 Added options that use square brackets in their names; this ensures that by Fred Drake · 24 years ago
- 3d5f7e8 Add test cases for ConfigParser.remove_option() behavior. This includes by Fred Drake · 24 years ago
- 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
- d391a34 Remove change that had not been saved when the output was generated; by Fred Drake · 24 years ago
- 8ef6767 Regression test for ConfigParser module. by Fred Drake · 24 years ago