1. 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
  2. 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
  3. 1b64359 Fix test for FeedParser results. by Barry Warsaw · 20 years ago
  4. 05bef93 as_string(): Indicate that this mangles From_ lines. by Barry Warsaw · 20 years ago
  5. bb11386 Big email 3.0 API changes, with updated unit tests and documentation. by Barry Warsaw · 20 years ago
  6. 2cdd608 removed 2.2 support by Just van Rossum · 20 years ago
  7. 16c3e08 use new readPlist() and writePlist() functions by Just van Rossum · 20 years ago
  8. 974d757 Upon insertion, if memory runs out, the deque was left in a corrupted state. by Armin Rigo · 20 years ago
  9. 4c3d054 Which reminds me, I've had a much improved plistlib.py lying around for by Just van Rossum · 20 years ago
  10. 10c7e86 deque_traverse(): If the deque had one block, and its rightindex was by Tim Peters · 20 years ago
  11. 7b46f6b Add tests for syntax errors. by Raymond Hettinger · 20 years ago
  12. 49c522b Expand scope to include general mapping protocol tests. by Raymond Hettinger · 20 years ago
  13. 59b23e8 Add missing test_dict.py from patch #736962. by Walter Dörwald · 20 years ago
  14. 5ea7e31 Improve test coverage. by Raymond Hettinger · 20 years ago
  15. ff5dc0e Improve test coverage. by Raymond Hettinger · 20 years ago
  16. bcab2b2 Improve test coverage. by Raymond Hettinger · 20 years ago
  17. 7d88a58 Reverted the addition of a NORMALIZE_NUMBERS option, per Tim Peter's by Edward Loper · 20 years ago
  18. 4cda01e * Increase test coverage. by Raymond Hettinger · 20 years ago
  19. aec3c9b Added a new NORMALIZE_NUMBERS option, which causes number literals in by Edward Loper · 20 years ago
  20. 6429a47 Use Py_CLEAR(). Add unrelated test. by Raymond Hettinger · 20 years ago
  21. 855d9a9 Plug a leak and beef-up test coverage. by Raymond Hettinger · 20 years ago
  22. 630e535 Rename test for comparision errors. by Raymond Hettinger · 20 years ago
  23. 6325178 Beef-up tests for greater coverage and refcount checking. by Raymond Hettinger · 20 years ago
  24. 9f90439 Patch #1011240: SystemError generated by struct.pack('P', 'foo'). by Armin Rigo · 20 years ago
  25. b562bc6 Trivial bug fix: deque == [] is not a good way to check if a deque is empty. by Armin Rigo · 20 years ago
  26. ffdb8bb Use floor division operator. by Raymond Hettinger · 20 years ago
  27. 4837a22 Use floor division operator. by Raymond Hettinger · 20 years ago
  28. 498a186 - Added a "parser" option to testfile() and DocFileTest(). by Edward Loper · 20 years ago
  29. aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 20 years ago
  30. 55593c3 Make the regex pattern easier to read, understand, and modify by Raymond Hettinger · 20 years ago
  31. 3afaaf2 Removed debug_script from the public API: no docs, not public. I'm in by Tim Peters · 20 years ago
  32. 9d02a7c Add set_unittest_reportflags() to the public API. Docs will follow by Tim Peters · 20 years ago
  33. 261b28a Removed two undocumented unittest support classes, and one undocumented by Tim Peters · 20 years ago
  34. 48983fc Removed most of the module docstring. There's too much to explain now, by Tim Peters · 20 years ago
  35. 5a59d88 Whitespace normalization. by Tim Peters · 20 years ago
  36. 3981511 Port test_unpack to doctest (patch #736962). by Johannes Gijsbers · 20 years ago
  37. 6bc937c Add yet more tests for buffer(). by Neil Schemenauer · 20 years ago
  38. 29302a7 Add a few more tests for the buffer() object. by Neil Schemenauer · 20 years ago
  39. b2635b2 Added log() function by Vinay Sajip · 20 years ago
  40. 02dd994 Added exception handling during handler initialization in fileConfig() by Vinay Sajip · 20 years ago
  41. 1cc3738 Whitespace normalization. by Tim Peters · 20 years ago
  42. 596ba4d Granted Noam Raphael's request for minor improvements to the re module and by Raymond Hettinger · 20 years ago
  43. 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 20 years ago
  44. 4533f1f Improve three recipes in the itertools docs. by Raymond Hettinger · 20 years ago
  45. 513c8bd Arghh, checked in wrong draft. Replacing with correct one. by Raymond Hettinger · 20 years ago
  46. 0336e1f Use local variables in StringIO.write(). by Raymond Hettinger · 20 years ago
  47. 7ec642a Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders. by Phillip J. Eby · 20 years ago
  48. 2c31a05 SF patch #1031667: Fold tuples of constants into a single constant by Raymond Hettinger · 20 years ago
  49. ce96d8b Bug #1030125: rfc822 __iter__ problem by Raymond Hettinger · 20 years ago
  50. b959117 Added getLoggerClass() by Vinay Sajip · 20 years ago
  51. a2fc7ec - Minor docstring fixes. - Simplified code to find names for file-based tests. by Edward Loper · 20 years ago
  52. 4ae900f - Changed SampleClass docstrings to test docstring parsing a little by Edward Loper · 20 years ago
  53. bab3e99 Whitespace normalization. by Tim Peters · 20 years ago
  54. 6165620 Import no longer needed. by Raymond Hettinger · 20 years ago
  55. 13dea5a Raymond reminded me to use DSU key by Skip Montanaro · 20 years ago
  56. 41f89a4 Sort classes by fully qualified name. In the common case where you are by Skip Montanaro · 20 years ago
  57. 052d0cd - Added "testfile" function, a simple function for running & verifying by Edward Loper · 20 years ago
  58. 636a6b1 SF patch #1020845: Decimal performance enhancements by Raymond Hettinger · 20 years ago
  59. 0273f5b In DocFileTest: by Edward Loper · 20 years ago
  60. 725f8c8 Patch #1021596: Check for None to determine whether _urandomfd is uninitialized. by Martin v. Löwis · 20 years ago
  61. b0c670c Convert boolean results back to strings. Fixes #807871. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  62. f3c5611 Patch #1029061: Always extract member names from the tarinfo. by Martin v. Löwis · 20 years ago
  63. 39a3178 Patch #1025790: Add status code constants to httplib. by Martin v. Löwis · 20 years ago
  64. 17cb600 At the cost of a modest (but useful in its own right) change in the semantics by Barry Warsaw · 20 years ago
  65. 6011a3c SF Patch 1022011: Add a command-line argument --no-autoreq, which sets the by Sean Reifschneider · 20 years ago
  66. 57a6a41 SF Patch 1022003: Change bdist_rpm _topdir to use by Sean Reifschneider · 20 years ago
  67. 528ca53 SF bug #1028306: date-datetime comparison by Tim Peters · 20 years ago
  68. c74298a Whitespace normalization. by Tim Peters · 20 years ago
  69. 0a1af4a Remove tabs. by Brett Cannon · 20 years ago
  70. 9996828 Patch #1026986: Add OpenBSD 3.5 and 3.6 to list of broken systems. by Martin v. Löwis · 20 years ago
  71. 74a249e Strip square brackets from IPv6 address. by Martin v. Löwis · 20 years ago
  72. cae14d2 missed the obvious test case and corresponding fix by Skip Montanaro · 20 years ago
  73. 10e6e0e Search from the end of the host/port combination to find the colon which by Skip Montanaro · 20 years ago
  74. 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 20 years ago
  75. 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 20 years ago
  76. 6d19111 Fix small bugs in Template code. by Raymond Hettinger · 20 years ago
  77. 23f1241 SF #1027105: HardwareRandom should be renamed OSRandom by Raymond Hettinger · 20 years ago
  78. 3e773fb The 4th group is now 'invalid' instead of 'bogus'. by Barry Warsaw · 20 years ago
  79. b5c6b5b Raymond's good suggestion to re-order the tests in the convert() helper so the by Barry Warsaw · 20 years ago
  80. b6234a9 substitute(), safe_substitute(): Paul Moore provides a better hack for dealing by Barry Warsaw · 20 years ago
  81. c7cd20c Added a test for # positional arguments > 1. by Barry Warsaw · 20 years ago
  82. 958cc89 exclude_empty: make the default True for DocTestFinder, and introduce it by Tim Peters · 20 years ago
  83. 302bd58 Add tests for keyword arguments and combining mapping and keyword arguments. by Barry Warsaw · 20 years ago
  84. 46b629c Accepted Raymond's patch to combine mapping and keyword arguments, with slight by Barry Warsaw · 20 years ago
  85. 32ddbf7 Added new parameter exclude_empty to DocTestFinder.__init__, which by Edward Loper · 20 years ago
  86. c568478 DocTestFinder._find(): for tests derived from a module __test__ global, by Tim Peters · 20 years ago
  87. 82076ef Reluctantly, rehabilitate doctest.master. by Tim Peters · 20 years ago
  88. 9661f9a Tester.run___test__(): This couldn't possibly work at all. I'm afraid by Tim Peters · 20 years ago
  89. 4be7a92 Tester.__init__(): this couldn't possibly work when a module argument by Tim Peters · 20 years ago
  90. 0e9980f Whitespace normalization. by Tim Peters · 20 years ago
  91. d60e92a Document not-completely-obvious behavior in a test. by Johannes Gijsbers · 20 years ago
  92. 17b5637 Recover from inspect.getmodule() changes. It returns a module for by Tim Peters · 20 years ago
  93. 9324526 Use __module__ attribute when available instead of using isclass() predicate by Johannes Gijsbers · 20 years ago
  94. f43e8bd Template: remove __slots__ since that interferes with the ability to mix in by Barry Warsaw · 20 years ago
  95. 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
  96. 23c48a1 Patch #808120: Add --force-arch=ARCH to bdist_rpm.py. by Martin v. Löwis · 20 years ago
  97. 641d648 Patch #808115: Add script support to bdist_rpm.py. by Martin v. Löwis · 20 years ago
  98. 1f7d6a6 __slots__ went missing from Template. by Raymond Hettinger · 20 years ago
  99. 12827c1 Many updates to PEP 292 templates. Summary: by Barry Warsaw · 20 years ago
  100. 583359e clean up the API a little; exceptions are defined by this module by Fred Drake · 20 years ago