1. 22c0706 fix decoding in _stringify to not depend on the default encoding by Fred Drake · 19 years ago
  2. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 19 years ago
  3. ba613c3 accept datetime.datetime instances when marshalling; by Fred Drake · 19 years ago
  4. bfd7d6a Fix typo by Andrew M. Kuchling · 19 years ago
  5. a9620d1 Fix stupid typo: Don't read from a writer. by Walter Dörwald · 19 years ago
  6. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 19 years ago
  7. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 19 years ago
  8. 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
  9. 1d11de6 Revert os.py 1.75, and directly implement update. Fixes #1110478 and #1100235. by Martin v. Löwis · 20 years ago
  10. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 20 years ago
  11. 4d394df Truncate st_?time before comparing it with ST_?TIME in the tests. by Martin v. Löwis · 20 years ago
  12. 1083c24 Add a slice test with high < low. by Walter Dörwald · 20 years ago
  13. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  14. fee7b93 Use decorators. by Guido van Rossum · 20 years ago
  15. 608c2ff Whitespace normalization. by Tim Peters · 20 years ago
  16. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  17. 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
  18. 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
  19. 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
  20. c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
  21. 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
  22. af1e312 Improve test coverage fractionally. by Andrew McNamara · 20 years ago
  23. e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
  24. a422c34 SF 1098985: set objects cannot be marshalled by Raymond Hettinger · 20 years ago
  25. 7130ff5 Replace python-coded validation of csv dialect with a call to the C by Andrew McNamara · 20 years ago
  26. 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
  27. 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
  28. 9fa0946 Fix and test for SF bug #1098990: codec readline() splits lines apart. by Walter Dörwald · 20 years ago
  29. 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
  30. 41e4faa Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' as by Johannes Gijsbers · 20 years ago
  31. a3beee1 Clean up tests by reusing functions from other modules: by Johannes Gijsbers · 20 years ago
  32. 836f543 Patch #943206: by Johannes Gijsbers · 20 years ago
  33. 711906e threading._DummyThread.__init__(): document obscure new code. by Tim Peters · 20 years ago
  34. 84d5489 Converted to a unittest. Added checks that the bounded semaphore actually by Tim Peters · 20 years ago
  35. 922b3e2 Remove test for BINARY_DIVIDE. by Raymond Hettinger · 20 years ago
  36. 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
  37. 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
  38. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  39. 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 20 years ago
  40. ee1d247 Add a test that checks the basic functionality of every encoding. by Walter Dörwald · 20 years ago
  41. 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
  42. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  43. 7c404a4 add __file__ to the globals available for tests loaded via DocFileSuite; by Fred Drake · 20 years ago
  44. e57d7b1 The changes to the stateful codecs in 2.4 resulted in StreamReader.readline() by Walter Dörwald · 20 years ago
  45. 2ccea17 Any call to marshal.dumps() with the new optional argument 'version' just by Armin Rigo · 20 years ago
  46. 94eaee6 Skip test_imp if threading is not available. by Brett Cannon · 20 years ago
  47. 7e71fa5 Bug #1083645 by Raymond Hettinger · 20 years ago
  48. b0900e6 SF #1085304: Make array.array pickle-able by Raymond Hettinger · 20 years ago
  49. 29ddfba Fix copy & paste error in comments. by Walter Dörwald · 20 years ago
  50. 1542f34 Patch #1011890: fix inspect.getsource breaking with line-continuation & by Johannes Gijsbers · 20 years ago
  51. cb9015d Patch #736962: port test_inspect to unittest. As part of this, move out by Johannes Gijsbers · 20 years ago
  52. 6b220b0 Use os.geteuid() for checking whether we are root, as suggested by by Johannes Gijsbers · 20 years ago
  53. 7f06187 Whitespace normalization. by Tim Peters · 20 years ago
  54. b8b09d0 SF bug #1076467: don't run test_on_error as root, as the permission by Johannes Gijsbers · 20 years ago
  55. c8aa848 Have test_mkalias_relative check that sys.prefix already exists; otherwise test by Brett Cannon · 20 years ago
  56. c7979f1 Removed deprecated tzparse module. by Raymond Hettinger · 20 years ago
  57. b259405 Added optional None arguments to itertools.islice(). by Raymond Hettinger · 20 years ago
  58. 4ebe364 Remove the deprecated statcache module. by Raymond Hettinger · 20 years ago
  59. 1bc82f8 Removed deprecated method arguments from the shelve module. by Raymond Hettinger · 20 years ago
  60. 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
  61. 4901a1f Add key= argument to heapq.nsmallest() and heapq.nlargest(). by Raymond Hettinger · 20 years ago
  62. 738131d Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightly modified. by Peter Astrand · 20 years ago
  63. e1defa4 Fix argument order in pure python version of nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  64. 605ed02 SF bug #1071588 coercing decimal to int doesn't work between -1 and 1 by Raymond Hettinger · 20 years ago
  65. 3684c87 Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to the by Brett Cannon · 20 years ago
  66. 8e6f2de Bug #1071513: don't test on Cygwin, as chmod doesn't work reliably there by Johannes Gijsbers · 20 years ago
  67. 08febeb Add 'linux2' as one of the platforms that does not use the echo service as one by Brett Cannon · 20 years ago
  68. 2224be6 Remove tempfile after use in test_call_string. by Peter Astrand · 20 years ago
  69. bbc0d44 SF bug 1065388: calendar day/month name lookup too slow by Tim Peters · 20 years ago
  70. fba7369 Patch #1050475: Fix various x86_64 build issues by Martin v. Löwis · 20 years ago
  71. aee4da6 Add options to regrtest.py to make it possible to specify where to put by Walter Dörwald · 20 years ago
  72. 195404f Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64 by Peter Astrand · 20 years ago
  73. 2dae764 On second thought: "Errors should never pass silently", so barf when a by Just van Rossum · 20 years ago
  74. 48ecacc testing control chars and non-dict root objects by Just van Rossum · 20 years ago
  75. 952f880 SF patch #1062279: deque pickling problems (Contributed by Dima Dorfman.) by Raymond Hettinger · 20 years ago
  76. 15056a5 SF 1062353: set pickling problems by Raymond Hettinger · 20 years ago
  77. 50c6bdb test_doctest.py test_pdb_set_trace_nested(): A new test from Jim Fulton by Tim Peters · 20 years ago
  78. e0b855f test for fixedness of bug #1057835. (thanks to Raymond for the prod). by Michael W. Hudson · 20 years ago
  79. d6eb352 Stop printing listdir bytestring output, as the precise list of strings by Martin v. Löwis · 20 years ago
  80. cd24699 Try a different filename if the Latin-1 file name cannot by Martin v. Löwis · 20 years ago
  81. 00afb07 Whitespace normalization. by Tim Peters · 20 years ago
  82. 90cf212 Essentially SF patch 1061679: add missing __all__ to pickletools.py. Harmless. by Tim Peters · 20 years ago
  83. 599bd5e Fix bug 1052242. Also includes rewrite of test case using unittest and by Skip Montanaro · 20 years ago
  84. 5dec096 Maintain peepholer's cumlc invariant by updating the running total by Raymond Hettinger · 20 years ago
  85. f7010be * Bumped up the sleep() delay to four seconds so this test will run by Raymond Hettinger · 20 years ago
  86. bb9c739 Add error checks for the bz2, cStringIO and operator modules. by Walter Dörwald · 20 years ago
  87. 4a8d851 Bug #1057993: Use sleep() always instead of os.utime() possibly broken by Hye-Shik Chang · 20 years ago
  88. 8c72eae SF patch #1056967, changes the semantics of Template.safe_substitute() to not by Barry Warsaw · 20 years ago
  89. 4590c00 test_on_error(): Rewrite so it works on WinXP too. Unsure about 95/98/ME. by Tim Peters · 20 years ago
  90. ef5ffc4 Bug #1048941: shutil.rmtree error handling was always broken by Johannes Gijsbers · 20 years ago
  91. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  92. 89a3946 Wrote down the invariants of some common objects whose structure is by Armin Rigo · 20 years ago
  93. 063e1e8 Trigger a few error cases in Modules/_codecsmodule.c. by Walter Dörwald · 20 years ago
  94. 14adbe7 Fix bug of implementation of algorithm for calculating the date from year, week by Brett Cannon · 20 years ago
  95. 7afa64e Add a comment explains why we should modify mtime here. by Hye-Shik Chang · 20 years ago
  96. 1816d79 Removed newly redundant embedded import. by Tim Peters · 20 years ago
  97. 10d59f3 Whitespace normalization. by Tim Peters · 20 years ago
  98. f1af9c0 Paper over bug 1054615 by passing sane values to os.utime(). by Tim Peters · 20 years ago
  99. 48aa84b Update optparse module and test suite to Optik 1.5a2. by Greg Ward · 20 years ago
  100. fc93e17 - Added tests for the string load/dump function. by Just van Rossum · 20 years ago