1. e2713be Build with --disable-unicode again. Fixes #1158607. Will backport to 2.4. by Martin v. Löwis · 20 years ago
  2. b60ae99 Convert file names of posix.access according to the file system encoding. by Martin v. Löwis · 20 years ago
  3. c8b6d1b Make functional.partial() more closely match the spec by emulating by Raymond Hettinger · 20 years ago
  4. 50682d0 SF #818006: merge from release24-maint branch: add useful read-only by Greg Ward · 20 years ago
  5. 78be7df Patch #918101: Add tarfile open mode r|* for auto-detection of the by Martin v. Löwis · 20 years ago
  6. 653a5ad Tweak test_communicate_stderr so that it works when run under a pydebug build. by Brett Cannon · 20 years ago
  7. 4040794 SF #1149508: ensure textwrap handles hyphenated numbers correctly, by Greg Ward · 20 years ago
  8. f7f1bb7 Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637 by Peter Astrand · 20 years ago
  9. cbac93c Added three more testcases: Using communicate with only one of by Peter Astrand · 20 years ago
  10. b67cc80 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 20 years ago
  11. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 20 years ago
  12. 7fe60c0 Patches #749830, #1144555: allow UNIX mmap size to default to current file size. by Martin v. Löwis · 20 years ago
  13. c5574e8 Patch #1117454: Remove code to special-case cookies without values by Martin v. Löwis · 20 years ago
  14. 4ea3ead Patch #1117339: Add cookielib special name tests. Backported to 2.4. by Martin v. Löwis · 20 years ago
  15. ff232d7 Clear internal call error in 'L' format. Fixes #723201. Backported to 2.4. by Martin v. Löwis · 20 years ago
  16. df24153 Patch #1107973: tarfile.ExFileObject iterators. by Martin v. Löwis · 20 years ago
  17. e94e74a Make test__locale more fine-grained. Now test localeconv and nl_langinfo by Brett Cannon · 20 years ago
  18. 9c323f8 SF patch #941881: PEP 309 Implementation (Partial Function Application). by Raymond Hettinger · 20 years ago
  19. c2a0ac2 Patch #1049151: adding bool support to xdrlib.py. by Martin v. Löwis · 20 years ago
  20. afd842f Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 20 years ago
  21. 57e7447 * Beef-up tests for str.count(). by Raymond Hettinger · 20 years ago
  22. 7cbf1bc * Beef-up testing of str.__contains__() and str.find(). by Raymond Hettinger · 20 years ago
  23. af3b39a Add support for negative indices in UserString.MutableString.__setitem__ by Walter Dörwald · 20 years ago
  24. 1fd4db9 Fix copy & paste error. by Walter Dörwald · 20 years ago
  25. 7f79152 Add tests for the methods added by UserString.MutableString. by Walter Dörwald · 20 years ago
  26. 5510f65 Avoid using items() in environ.update(). Fixes #1124513. Will backport to 2.4. by Martin v. Löwis · 20 years ago
  27. 3040b19 Add a basic test for UserString.MutableString. by Walter Dörwald · 20 years ago
  28. ee319f6 Fix by Michael W. Hudson · 20 years ago
  29. f0db38d Whitespace normalization. by Tim Peters · 20 years ago
  30. f058858 Test that SystemExits are handled properly by the exit machinery. I by Michael W. Hudson · 20 years ago
  31. a1fb4c8 Exceedingly minor tweak. by Michael W. Hudson · 20 years ago
  32. 22c0706 fix decoding in _stringify to not depend on the default encoding by Fred Drake · 20 years ago
  33. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 20 years ago
  34. ba613c3 accept datetime.datetime instances when marshalling; by Fred Drake · 20 years ago
  35. bfd7d6a Fix typo by Andrew M. Kuchling · 20 years ago
  36. a9620d1 Fix stupid typo: Don't read from a writer. by Walter Dörwald · 20 years ago
  37. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 20 years ago
  38. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 20 years ago
  39. 1f1d252 Add a test for UTF-16 reading where the byte sequence doesn't start with a BOM. by Walter Dörwald · 20 years ago
  40. 1d11de6 Revert os.py 1.75, and directly implement update. Fixes #1110478 and #1100235. by Martin v. Löwis · 20 years ago
  41. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 20 years ago
  42. 4d394df Truncate st_?time before comparing it with ST_?TIME in the tests. by Martin v. Löwis · 20 years ago
  43. 1083c24 Add a slice test with high < low. by Walter Dörwald · 20 years ago
  44. 5a8a037 Use descriptors. by Guido van Rossum · 20 years ago
  45. fee7b93 Use decorators. by Guido van Rossum · 20 years ago
  46. 608c2ff Whitespace normalization. by Tim Peters · 20 years ago
  47. 0af3ade Add strptime() constructor to datetime class. Thanks to Josh Spoerri for by Skip Montanaro · 20 years ago
  48. 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
  49. 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
  50. 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
  51. c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
  52. 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
  53. af1e312 Improve test coverage fractionally. by Andrew McNamara · 20 years ago
  54. e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
  55. a422c34 SF 1098985: set objects cannot be marshalled by Raymond Hettinger · 20 years ago
  56. 7130ff5 Replace python-coded validation of csv dialect with a call to the C by Andrew McNamara · 20 years ago
  57. 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
  58. 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
  59. 9fa0946 Fix and test for SF bug #1098990: codec readline() splits lines apart. by Walter Dörwald · 20 years ago
  60. 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
  61. 41e4faa Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' as by Johannes Gijsbers · 20 years ago
  62. a3beee1 Clean up tests by reusing functions from other modules: by Johannes Gijsbers · 20 years ago
  63. 836f543 Patch #943206: by Johannes Gijsbers · 20 years ago
  64. 711906e threading._DummyThread.__init__(): document obscure new code. by Tim Peters · 20 years ago
  65. 84d5489 Converted to a unittest. Added checks that the bounded semaphore actually by Tim Peters · 20 years ago
  66. 922b3e2 Remove test for BINARY_DIVIDE. by Raymond Hettinger · 20 years ago
  67. 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
  68. 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
  69. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  70. 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 20 years ago
  71. ee1d247 Add a test that checks the basic functionality of every encoding. by Walter Dörwald · 20 years ago
  72. 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
  73. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  74. 7c404a4 add __file__ to the globals available for tests loaded via DocFileSuite; by Fred Drake · 20 years ago
  75. e57d7b1 The changes to the stateful codecs in 2.4 resulted in StreamReader.readline() by Walter Dörwald · 20 years ago
  76. 2ccea17 Any call to marshal.dumps() with the new optional argument 'version' just by Armin Rigo · 20 years ago
  77. 94eaee6 Skip test_imp if threading is not available. by Brett Cannon · 20 years ago
  78. 7e71fa5 Bug #1083645 by Raymond Hettinger · 20 years ago
  79. b0900e6 SF #1085304: Make array.array pickle-able by Raymond Hettinger · 20 years ago
  80. 29ddfba Fix copy & paste error in comments. by Walter Dörwald · 20 years ago
  81. 1542f34 Patch #1011890: fix inspect.getsource breaking with line-continuation & by Johannes Gijsbers · 20 years ago
  82. cb9015d Patch #736962: port test_inspect to unittest. As part of this, move out by Johannes Gijsbers · 20 years ago
  83. 6b220b0 Use os.geteuid() for checking whether we are root, as suggested by by Johannes Gijsbers · 20 years ago
  84. 7f06187 Whitespace normalization. by Tim Peters · 20 years ago
  85. b8b09d0 SF bug #1076467: don't run test_on_error as root, as the permission by Johannes Gijsbers · 20 years ago
  86. c8aa848 Have test_mkalias_relative check that sys.prefix already exists; otherwise test by Brett Cannon · 20 years ago
  87. c7979f1 Removed deprecated tzparse module. by Raymond Hettinger · 20 years ago
  88. b259405 Added optional None arguments to itertools.islice(). by Raymond Hettinger · 20 years ago
  89. 4ebe364 Remove the deprecated statcache module. by Raymond Hettinger · 20 years ago
  90. 1bc82f8 Removed deprecated method arguments from the shelve module. by Raymond Hettinger · 20 years ago
  91. 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
  92. 4901a1f Add key= argument to heapq.nsmallest() and heapq.nlargest(). by Raymond Hettinger · 20 years ago
  93. 738131d Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightly modified. by Peter Astrand · 20 years ago
  94. e1defa4 Fix argument order in pure python version of nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  95. 605ed02 SF bug #1071588 coercing decimal to int doesn't work between -1 and 1 by Raymond Hettinger · 20 years ago
  96. 3684c87 Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to the by Brett Cannon · 20 years ago
  97. 8e6f2de Bug #1071513: don't test on Cygwin, as chmod doesn't work reliably there by Johannes Gijsbers · 20 years ago
  98. 08febeb Add 'linux2' as one of the platforms that does not use the echo service as one by Brett Cannon · 20 years ago
  99. 2224be6 Remove tempfile after use in test_call_string. by Peter Astrand · 20 years ago
  100. bbc0d44 SF bug 1065388: calendar day/month name lookup too slow by Tim Peters · 20 years ago