1. ab65996 Remove some overly complicated ways to concatenate and repeat strings by Guido van Rossum · 22 years ago
  2. 284a2cf Don't test for Java, test for sys.getrefcount. by Guido van Rossum · 22 years ago
  3. 1c93801 Some provisional changes to get more tests to run on Windows (I hope). by Guido van Rossum · 22 years ago
  4. 8e95ca8 Argh. Typo. :-( by Guido van Rossum · 22 years ago
  5. 6fb3d5e Allow absent fromfd(), for Windows. by Guido van Rossum · 22 years ago
  6. 733632a testSetSockOpt() should not require the reuse flag to be 1 -- any by Guido van Rossum · 22 years ago
  7. 7648968 Lose the message on assertEqual calls -- they actually hide by Guido van Rossum · 22 years ago
  8. 28774da Docstring, layout and style tweaking. Increase fuzz to 1 second. by Guido van Rossum · 22 years ago
  9. aa6a664 Add some more basic tests to validate the argument checking of by Guido van Rossum · 22 years ago
  10. 24e4af8 New test suite for the socket module by Michael Gilfix. by Guido van Rossum · 22 years ago
  11. 05e01ee Add a testcase to ensure that cycles going through the __class__ link by Guido van Rossum · 22 years ago
  12. c5fe5eb SF bug 567538: Generator can crash the interpreter (Finn Bock). by Guido van Rossum · 22 years ago
  13. 589dc93 Fix for problem reported by Neal Norwitz. Tighten up calculation of by Michael W. Hudson · 22 years ago
  14. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  15. f90ae20 Patch #488073: AtheOS port. by Martin v. Löwis · 22 years ago
  16. 009afb7 SF patch 564549 (Erik Andersén). by Guido van Rossum · 22 years ago
  17. 9e9d4f8 Added -t (--threshold) option to call gc.set_threshold(N). by Guido van Rossum · 22 years ago
  18. 67f7a38 SF patch 555085 (timeout socket implementation) by Michael Gilfix. by Guido van Rossum · 22 years ago
  19. a48cb8f Fix from SF patch 565085: copy._reduction doesn't __setstate__. by Guido van Rossum · 22 years ago
  20. 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 22 years ago
  21. 446a25f Patch 473512: add GNU style scanning as gnu_getopt. by Martin v. Löwis · 22 years ago
  22. cdbc131 Patch #551911: Escape . properly. by Martin v. Löwis · 22 years ago
  23. c4c453f Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. by Raymond Hettinger · 22 years ago
  24. d842e07 SF bug 558179. Change default for get() back to None. Will backport to 2.2.1. by Guido van Rossum · 22 years ago
  25. 9923ffe Address SF bug 519621: slots weren't traversed by GC. by Guido van Rossum · 22 years ago
  26. 1bdd9b0 Test repair now that module.__init__ requires a name and initializes by Guido van Rossum · 22 years ago
  27. bdabecc Repair the test (adding a docstring to the module type changed the by Guido van Rossum · 22 years ago
  28. c3a787e Surprising fix for SF bug 563060: module can be used as base class. by Guido van Rossum · 22 years ago
  29. 155a34d The warning filter was ineffective when this module was invoked as a script. by Guido van Rossum · 22 years ago
  30. c5000df regrtest has a new by Tim Peters · 22 years ago
  31. 2c68506 Generator.__call__() => Generator.flatten() by Barry Warsaw · 22 years ago
  32. 14bd6de SF 560736. Optimize list iteration by filling the tp_iter slot. by Raymond Hettinger · 22 years ago
  33. 05ab2e6 Fix SF bug [ 561825 ] Confusing error for "del f()" by Jeremy Hylton · 22 years ago
  34. 40b7703 Verify that the imp can find and load .py files. by Jeremy Hylton · 22 years ago
  35. 34f20ea This is patch by Michael W. Hudson · 22 years ago
  36. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  37. 8ac1495 Whitespace normalization. by Tim Peters · 22 years ago
  38. f655328 parseaddr(): Fixed in the same way that Message.getaddrlist() was by Barry Warsaw · 22 years ago
  39. 12424bc force gzip module to open files using 'b'inary mode. closes patch #536278. by Skip Montanaro · 22 years ago
  40. d4e5be5 Closes: #556025 seg fault when doing list(xrange(1e9)) by Neal Norwitz · 22 years ago
  41. 4be9ecc getaddresses(): Like the change in rfc822.py, this one needs to access by Barry Warsaw · 22 years ago
  42. 0a8d4d5 Message.getaddrlist(): Use the AddressList.addresslist attribute by Barry Warsaw · 22 years ago
  43. 7b7ba54 Guess what? --disable-unicode proofing. by Michael W. Hudson · 22 years ago
  44. f207277 More --disable-unicode stuff. by Michael W. Hudson · 22 years ago
  45. 9c37306 tolerate --disable-unicode... by Michael W. Hudson · 22 years ago
  46. 7c6a4ad More mindless --disable-unicode proofing. by Michael W. Hudson · 22 years ago
  47. 286225b easy --disable-unicode proofing. by Michael W. Hudson · 22 years ago
  48. 6d86f83 A test message w/ CRLF line endings by Barry Warsaw · 22 years ago
  49. e0d85c8 Add two new tests of recent email package fixes: CRLF line endings, by Barry Warsaw · 22 years ago
  50. 2ae8753 Added Mitchell Surface's regression tests for base64. Closes patch #550002. by Raymond Hettinger · 22 years ago
  51. 8bf46e4 This is patch by Michael W. Hudson · 22 years ago
  52. 2d2b51b Added tests for new degree/radian conversions. by Raymond Hettinger · 22 years ago
  53. 4402241 Jim Fulton reported a segfault in dir(). A heavily proxied object by Guido van Rossum · 22 years ago
  54. df4dabd SF 554663. Add OpenBSD3. Bugfix candidate if anyone cares. by Guido van Rossum · 22 years ago
  55. e1c67d1 Make StringIO work in --disable-unicode builds... by Michael W. Hudson · 22 years ago
  56. 64108af Adds tests for degrees() and radians() functions added to mathmodule. by Raymond Hettinger · 22 years ago
  57. 39a86c2 SF bug 555042: zip() may trigger MemoryError. by Tim Peters · 22 years ago
  58. 46c04e1 random.gauss() uses a piece of hidden state used by nothing else, by Tim Peters · 22 years ago
  59. e08fda9 Remove all tests that rely on deprecated-in-2.2 features of xrange objects. by Fred Drake · 22 years ago
  60. e0e890a Added regression tests for xrange object attributes. See SF bug #551285. by Fred Drake · 22 years ago
  61. 485f340 Buffer-object repitition and concatenation has worked all along; add a test by Fred Drake · 22 years ago
  62. e41abab Fred's recent changes to support "-u all" resulted in subset resource by Andrew MacIntyre · 22 years ago
  63. 67d687a builtin_zip(): Take a good guess at how big the result list will be, by Tim Peters · 22 years ago
  64. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago
  65. 3b04d63 Add more tests for abstract isinstance() and issubclass(). by Neil Schemenauer · 22 years ago
  66. 1e33ffa test_resource has no chance of running on Windows. by Tim Peters · 22 years ago
  67. e12cda9 test_mmap started breaking on Windows, only when run after test_bsddb. by Tim Peters · 22 years ago
  68. 906569d Unit tests for the changes in abstract.c version 2.101. The debug by Barry Warsaw · 22 years ago
  69. 5ca5374 Rewrote the PyUnit description so that it now recommends to use by Barry Warsaw · 22 years ago
  70. 74ce77f Add tests for the recent resource module change. by Jeremy Hylton · 22 years ago
  71. 1476c27 There was a non-ascii character in the source. Replaced by a hex escape. by Jack Jansen · 22 years ago
  72. 4ce6b35 don't fail if the audio device is busy, just skip. SF patch 545486 by Anthony Baxter · 22 years ago
  73. 8388895 SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL) closes SF #514433 by Anthony Baxter · 22 years ago
  74. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  75. 639295f Enable universal newlines on Windows. Note that NEWS needs more words! by Tim Peters · 22 years ago
  76. ea572b2 Assorted code cleanups for readability. Greatly boosted the size of the by Tim Peters · 22 years ago
  77. 954aed8 Add test for eval() w/ free variables. by Jeremy Hylton · 22 years ago
  78. c72737e Fix SF #544995 (zlib crash on second flush call) Bug fix by mhammond. by Jeremy Hylton · 22 years ago
  79. 3b959db Fix bug 544473 - "Queue module can deadlock". by Mark Hammond · 22 years ago
  80. afb2c80 ceval.c/do_raise(): Tighten the test to disallow raising an instance of by Tim Peters · 22 years ago
  81. 5379dea SF bug 544733: Cygwin test_mmap fix for Python 2.2.1 by Tim Peters · 22 years ago
  82. d99b3e7 SF bug 542984. by Guido van Rossum · 22 years ago
  83. 2ee4be0 Apply diff3.txt from SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  84. e8fc640 SF bug 544647. by Guido van Rossum · 22 years ago
  85. 4eaf50f test_mktime(): Removed. This wasn't really testing anything useful by Barry Warsaw · 22 years ago
  86. 16f9055 Whitespace normalization, while using non-whitespace literals for by Barry Warsaw · 22 years ago
  87. 6184c11 Expect test_email_codecs to be skipped -- few users or developers will by Guido van Rossum · 22 years ago
  88. 27dba87 Apparently 3 of the tests here rely on trailing whitespace and/or hard by Tim Peters · 22 years ago
  89. 4d9b466 Fewer deprecation warnings. by Tim Peters · 22 years ago
  90. 863ac44 Whitespace normalization. by Tim Peters · 22 years ago
  91. d392506 Tighten up some warning filters, and break some dependencies on the by Tim Peters · 22 years ago
  92. 50ac30e OK, don't call resetwarnings(). by Tim Peters · 22 years ago
  93. 7d79948 It makes more sense to call resetwarnings() after every test runs than by Tim Peters · 22 years ago
  94. a91a02a I expect test_univnewlines to be skipped on Windows. I expect this by Tim Peters · 22 years ago
  95. f022a4d Reduce the number of test-suite DeprecationWarnings; start adding by Tim Peters · 22 years ago
  96. c9ad32c test_main(): Added this so the test can actually get run under the by Barry Warsaw · 22 years ago
  97. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  98. b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 22 years ago
  99. 077f271 SF bug 543840: complex(string) accepts strings with \0 by Tim Peters · 22 years ago
  100. 518d261 Test suite for universal newline support. by Jack Jansen · 22 years ago