1. 4ea3ead Patch #1117339: Add cookielib special name tests. Backported to 2.4. by Martin v. Löwis · 19 years ago
  2. ff232d7 Clear internal call error in 'L' format. Fixes #723201. Backported to 2.4. by Martin v. Löwis · 19 years ago
  3. df24153 Patch #1107973: tarfile.ExFileObject iterators. by Martin v. Löwis · 19 years ago
  4. e94e74a Make test__locale more fine-grained. Now test localeconv and nl_langinfo by Brett Cannon · 19 years ago
  5. 9c323f8 SF patch #941881: PEP 309 Implementation (Partial Function Application). by Raymond Hettinger · 19 years ago
  6. c2a0ac2 Patch #1049151: adding bool support to xdrlib.py. by Martin v. Löwis · 19 years ago
  7. afd842f Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 19 years ago
  8. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 19 years ago
  9. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 19 years ago
  10. af3b39a Add support for negative indices in UserString.MutableString.__setitem__ by Walter Dörwald · 19 years ago
  11. 1fd4db9 Fix copy & paste error. by Walter Dörwald · 19 years ago
  12. 7f79152 Add tests for the methods added by UserString.MutableString. by Walter Dörwald · 19 years ago
  13. 5510f65 Avoid using items() in environ.update(). Fixes #1124513. Will backport to 2.4. by Martin v. Löwis · 19 years ago
  14. 3040b19 Add a basic test for UserString.MutableString. by Walter Dörwald · 19 years ago
  15. ee319f6 Fix by Michael W. Hudson · 19 years ago
  16. f0db38d Whitespace normalization. by Tim Peters · 19 years ago
  17. f058858 Test that SystemExits are handled properly by the exit machinery. I by Michael W. Hudson · 19 years ago
  18. a1fb4c8 Exceedingly minor tweak. by Michael W. Hudson · 19 years ago
  19. 22c0706 fix decoding in _stringify to not depend on the default encoding by Fred Drake · 19 years ago
  20. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 19 years ago
  21. ba613c3 accept datetime.datetime instances when marshalling; by Fred Drake · 19 years ago
  22. bfd7d6a Fix typo by Andrew M. Kuchling · 19 years ago
  23. a9620d1 Fix stupid typo: Don't read from a writer. by Walter Dörwald · 19 years ago
  24. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 19 years ago
  25. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 19 years ago
  26. 1f1d252 Add a test for UTF-16 reading where the byte sequence doesn't start with a BOM. by Walter Dörwald · 19 years ago
  27. 1d11de6 Revert os.py 1.75, and directly implement update. Fixes #1110478 and #1100235. by Martin v. Löwis · 20 years ago
  28. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 20 years ago
  29. 4d394df Truncate st_?time before comparing it with ST_?TIME in the tests. by Martin v. Löwis · 20 years ago
  30. 1083c24 Add a slice test with high < low. by Walter Dörwald · 20 years ago
  31. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  32. fee7b93 Use decorators. by Guido van Rossum · 20 years ago
  33. 608c2ff Whitespace normalization. by Tim Peters · 20 years ago
  34. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  35. 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
  36. 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
  37. 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
  38. c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
  39. 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
  40. af1e312 Improve test coverage fractionally. by Andrew McNamara · 20 years ago
  41. e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
  42. a422c34 SF 1098985: set objects cannot be marshalled by Raymond Hettinger · 20 years ago
  43. 7130ff5 Replace python-coded validation of csv dialect with a call to the C by Andrew McNamara · 20 years ago
  44. 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
  45. 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
  46. 9fa0946 Fix and test for SF bug #1098990: codec readline() splits lines apart. by Walter Dörwald · 20 years ago
  47. 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
  48. 41e4faa Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' as by Johannes Gijsbers · 20 years ago
  49. a3beee1 Clean up tests by reusing functions from other modules: by Johannes Gijsbers · 20 years ago
  50. 836f543 Patch #943206: by Johannes Gijsbers · 20 years ago
  51. 711906e threading._DummyThread.__init__(): document obscure new code. by Tim Peters · 20 years ago
  52. 84d5489 Converted to a unittest. Added checks that the bounded semaphore actually by Tim Peters · 20 years ago
  53. 922b3e2 Remove test for BINARY_DIVIDE. by Raymond Hettinger · 20 years ago
  54. 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
  55. 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
  56. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  57. 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 20 years ago
  58. ee1d247 Add a test that checks the basic functionality of every encoding. by Walter Dörwald · 20 years ago
  59. 3b585b3 [Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case by Andrew M. Kuchling · 20 years ago
  60. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  61. 7c404a4 add __file__ to the globals available for tests loaded via DocFileSuite; by Fred Drake · 20 years ago
  62. e57d7b1 The changes to the stateful codecs in 2.4 resulted in StreamReader.readline() by Walter Dörwald · 20 years ago
  63. 2ccea17 Any call to marshal.dumps() with the new optional argument 'version' just by Armin Rigo · 20 years ago
  64. 94eaee6 Skip test_imp if threading is not available. by Brett Cannon · 20 years ago
  65. 7e71fa5 Bug #1083645 by Raymond Hettinger · 20 years ago
  66. b0900e6 SF #1085304: Make array.array pickle-able by Raymond Hettinger · 20 years ago
  67. 29ddfba Fix copy & paste error in comments. by Walter Dörwald · 20 years ago
  68. 1542f34 Patch #1011890: fix inspect.getsource breaking with line-continuation & by Johannes Gijsbers · 20 years ago
  69. cb9015d Patch #736962: port test_inspect to unittest. As part of this, move out by Johannes Gijsbers · 20 years ago
  70. 6b220b0 Use os.geteuid() for checking whether we are root, as suggested by by Johannes Gijsbers · 20 years ago
  71. 7f06187 Whitespace normalization. by Tim Peters · 20 years ago
  72. b8b09d0 SF bug #1076467: don't run test_on_error as root, as the permission by Johannes Gijsbers · 20 years ago
  73. c8aa848 Have test_mkalias_relative check that sys.prefix already exists; otherwise test by Brett Cannon · 20 years ago
  74. c7979f1 Removed deprecated tzparse module. by Raymond Hettinger · 20 years ago
  75. b259405 Added optional None arguments to itertools.islice(). by Raymond Hettinger · 20 years ago
  76. 4ebe364 Remove the deprecated statcache module. by Raymond Hettinger · 20 years ago
  77. 1bc82f8 Removed deprecated method arguments from the shelve module. by Raymond Hettinger · 20 years ago
  78. 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
  79. 4901a1f Add key= argument to heapq.nsmallest() and heapq.nlargest(). by Raymond Hettinger · 20 years ago
  80. 738131d Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightly modified. by Peter Astrand · 20 years ago
  81. e1defa4 Fix argument order in pure python version of nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  82. 605ed02 SF bug #1071588 coercing decimal to int doesn't work between -1 and 1 by Raymond Hettinger · 20 years ago
  83. 3684c87 Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to the by Brett Cannon · 20 years ago
  84. 8e6f2de Bug #1071513: don't test on Cygwin, as chmod doesn't work reliably there by Johannes Gijsbers · 20 years ago
  85. 08febeb Add 'linux2' as one of the platforms that does not use the echo service as one by Brett Cannon · 20 years ago
  86. 2224be6 Remove tempfile after use in test_call_string. by Peter Astrand · 20 years ago
  87. bbc0d44 SF bug 1065388: calendar day/month name lookup too slow by Tim Peters · 20 years ago
  88. fba7369 Patch #1050475: Fix various x86_64 build issues by Martin v. Löwis · 20 years ago
  89. aee4da6 Add options to regrtest.py to make it possible to specify where to put by Walter Dörwald · 20 years ago
  90. 195404f Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64 by Peter Astrand · 20 years ago
  91. 2dae764 On second thought: "Errors should never pass silently", so barf when a by Just van Rossum · 20 years ago
  92. 48ecacc testing control chars and non-dict root objects by Just van Rossum · 20 years ago
  93. 952f880 SF patch #1062279: deque pickling problems (Contributed by Dima Dorfman.) by Raymond Hettinger · 20 years ago
  94. 15056a5 SF 1062353: set pickling problems by Raymond Hettinger · 20 years ago
  95. 50c6bdb test_doctest.py test_pdb_set_trace_nested(): A new test from Jim Fulton by Tim Peters · 20 years ago
  96. e0b855f test for fixedness of bug #1057835. (thanks to Raymond for the prod). by Michael W. Hudson · 20 years ago
  97. d6eb352 Stop printing listdir bytestring output, as the precise list of strings by Martin v. Löwis · 20 years ago
  98. cd24699 Try a different filename if the Latin-1 file name cannot by Martin v. Löwis · 20 years ago
  99. 00afb07 Whitespace normalization. by Tim Peters · 20 years ago
  100. 90cf212 Essentially SF patch 1061679: add missing __all__ to pickletools.py. Harmless. by Tim Peters · 20 years ago