1. e3e6104 Trivial tests of urllib2 for recent SF bug by Jeremy Hylton · 23 years ago
  2. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  3. e63415e SF patch #421922: Implement rich comparison for dicts. by Tim Peters · 23 years ago
  4. 4c88901 SF patch 419176 from MvL; fixed bug 418977 by Jeremy Hylton · 23 years ago
  5. 7ae2229 This is a test showing SF bug 422177. It won't trigger until I check in by Tim Peters · 23 years ago
  6. 8572b4f Generalize zip() to work with iterators. by Tim Peters · 23 years ago
  7. ef0c42d Get rid of silly 5am "del" stmts. by Tim Peters · 23 years ago
  8. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  9. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  10. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  11. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  12. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  13. 15d81ef Generalize reduce() to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  14. 8bc10b0 Purge redundant cut&paste line. by Tim Peters · 23 years ago
  15. 4e9afdc Generalize map() to work with iterators. by Tim Peters · 23 years ago
  16. efdae39 Remove redundant copy+paste code. by Tim Peters · 23 years ago
  17. c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  18. 542fe56 Fix for bug #417030: "print '%*s' fails for unicode string" by Marc-André Lemburg · 23 years ago
  19. 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 23 years ago
  20. 8ae2df4 Whitespace normalization. by Tim Peters · 23 years ago
  21. 0e540c3 Added tests for Weak*Dictionary iterator support. by Fred Drake · 23 years ago
  22. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  23. ddc4fd0 Fix 2.1 nested scopes crash reported by Evan Simpson by Jeremy Hylton · 23 years ago
  24. 8f42e2b Update test to accomodate the change to the namespace_separator parameter by Fred Drake · 23 years ago
  25. 8b48cf9 Add test suite for iterators. by Guido van Rossum · 23 years ago
  26. a3f98d6 Give UserDict new __contains__ and __iter__ methods. by Tim Peters · 23 years ago
  27. 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 23 years ago
  28. 3090694 Fix compileall.py so that it fails on SyntaxErrors by Jeremy Hylton · 23 years ago
  29. a0a4ab1 Add a test case for Weak*Dictionary.update() that would have caught a by Fred Drake · 23 years ago
  30. 42f92da Change the test data to ask for class C from module __main__ rather by Guido van Rossum · 23 years ago
  31. fc34986 In order to make this test work on Windows, the test locale has to be by Guido van Rossum · 23 years ago
  32. f3ee46b Set the SO_REUSEADDR socket option in the server thread -- this seems by Guido van Rossum · 23 years ago
  33. 9df3eab Add "import thread" at the top of the module; this prevents us from by Guido van Rossum · 23 years ago
  34. b891891 If the sunaudiodev module is available but we cannot find an audio by Fred Drake · 23 years ago
  35. 705088e Added regression test for SF bug #415660 (failure to invalidate all by Fred Drake · 23 years ago
  36. 361c535 Fix typo in comment (the module is now called _testcapi, not _test). by Guido van Rossum · 23 years ago
  37. c76770c Change error message raised when free variable is not yet bound. It by Jeremy Hylton · 23 years ago
  38. 79fa2b6 Add test for SF bug #405427 by Jeremy Hylton · 23 years ago
  39. 3bee2f6 Update to reflect new tokenize_test.py by Jeremy Hylton · 23 years ago
  40. a4553c0 There's no need for the tokenize tests to include a SyntaxError. by Jeremy Hylton · 23 years ago
  41. 88ad12a Patch #415777: new grouping strategy. by Martin v. Löwis · 23 years ago
  42. fff5325 Bug 415514 reported that e.g. by Tim Peters · 23 years ago
  43. 711088d Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. by Tim Peters · 23 years ago
  44. 4642cb9 Reverting the "unixware7" patch: atan2(0, 1) should be 0, regardless of by Tim Peters · 23 years ago
  45. 2242f2f Unixware 7 support by Billy G. Allie (SF patch 413011) by Guido van Rossum · 23 years ago
  46. ceccc3c Test cases for examples of ext call error handling. by Jeremy Hylton · 23 years ago
  47. bf43691 Use the WeakKeyDictionary and WeakValueDictionary classes directly by Fred Drake · 23 years ago
  48. 75ebb29 Some other tests, when failing, don't always remove their TESTFN file. by Guido van Rossum · 23 years ago
  49. a5af214 When doing the quick test to see whether large files are supported, by Guido van Rossum · 23 years ago
  50. bfce016 When zlib can't be imported, zipfile raises RuntimeError, which causes by Guido van Rossum · 23 years ago
  51. e089c68 Test full range of native ints. This exposes two more binary pickle by Tim Peters · 23 years ago
  52. 461922a Pickles have a number of storage formats for various sizes and kinds of by Tim Peters · 23 years ago
  53. c58440f No functional change -- just added whitespace in places so I could follow by Tim Peters · 23 years ago
  54. 7e01e28 Whitespace normalization. by Tim Peters · 23 years ago
  55. eb26f95 Since Guido fiddled Cookie.py to work with doctest, it's a Good Thing to by Tim Peters · 23 years ago
  56. f95423e Remove lines for asynchat & asyncore, as they've now got their own test. by Tim Peters · 23 years ago
  57. dca060c After testing the test on Unix, several improvements: by Guido van Rossum · 23 years ago
  58. 6617252 Add test for asynchat. This also tests asyncore. by Guido van Rossum · 23 years ago
  59. 7d3bad6 Sf bug [ #412214 ] ZipFile constructor leaves files open. by Tim Peters · 23 years ago
  60. a19a168 Whitespace normalization. by Tim Peters · 23 years ago
  61. 1417144 Based on info from Jens@digicool.com, add 'darwin1' to the list of by Guido van Rossum · 23 years ago
  62. 3d9091e Itamar Shtull-Trauring <itamar@maxnm.com>: by Fred Drake · 23 years ago
  63. 2108bc7 main(): Application of SF patch #405851, which allows this test to be by Barry Warsaw · 23 years ago
  64. 559f668 In Jython, `@' is not allowed in module names. Extend the TESTFN test by Barry Warsaw · 23 years ago
  65. 6870bba Make socket.getservbyname test optional on socket module having that by Barry Warsaw · 23 years ago
  66. dfdac1a Several changes for Jython portability. This closes SF patch by Barry Warsaw · 23 years ago
  67. f170d7f Don't have trace() skip the top frame; return them all. by Ka-Ping Yee · 23 years ago
  68. b0fefc5 Convert the weakref test suite to PyUNIT, and add tests that exercise weak by Fred Drake · 23 years ago
  69. 84a5934 When the regression test is run in verbose mode, make the PyUNIT-based by Fred Drake · 23 years ago
  70. 015415e SRE 2.1b2: increase the chances that the sre test works on other machines... by Fredrik Lundh · 23 years ago
  71. 987f133 SRE 2.1b2: forgot to update one output file (sorry, Fred!) by Fredrik Lundh · 23 years ago
  72. 17741be SRE 2.1b1: don't do unicode tests under 1.5.2, or on unicode strings/patterns. by Fredrik Lundh · 23 years ago
  73. b25e1ad sre 2.1b2 update: by Fredrik Lundh · 23 years ago
  74. b0dbeef Allow the process of reading back what we wrote to a pty to transform by Thomas Wouters · 23 years ago
  75. 5ddd1a8 Updated to latest PyUnit version (1.31 in PyUnit CVS); test_support.py by Steve Purcell · 23 years ago
  76. f6e47ad Check that f.keys() == [] right after creation -- this prevents bugs by Guido van Rossum · 23 years ago
  77. 24a4191 Changed doctest to run tests in alphabetic order of name. by Tim Peters · 23 years ago
  78. 09ccc3a Test that traceback module works with SyntaxErrors with or without carets. by Jeremy Hylton · 23 years ago
  79. 9175114 Add test cases for the fnmatch module. by Fred Drake · 23 years ago
  80. cd1b1dd Just import sys at the top instead of inside lots of functions. by Fred Drake · 23 years ago
  81. 5c7a251 Add tests for recent changes: by Jeremy Hylton · 23 years ago
  82. eba5130 Addrf simple test that import is case-sensitive. by Tim Peters · 23 years ago
  83. e241e29 Add test for a list comprehension that is nested in the left-hand part by Jeremy Hylton · 23 years ago
  84. 9e6f278 Repair test_doctest's expected-output file (Guido added some new output). by Tim Peters · 23 years ago
  85. 0f33604 SF bug [ #409448 ] Complex division is braindead by Tim Peters · 23 years ago
  86. 30edd23 Whitespace normalization. by Tim Peters · 23 years ago
  87. a8f7e59 Oops. A RISCOS patch I forgot to check in. by Guido van Rossum · 23 years ago
  88. 5b44a67 Add test to verify that nested functions with free variables don't by Jeremy Hylton · 23 years ago
  89. 63085d4 Import the nested_scopes feature twice, to exercise the patch introduced by Fred Drake · 23 years ago
  90. 243bff4 Clean up junk files left behind by imp.load_source(). by Tim Peters · 23 years ago
  91. 9054344 Replace literal '@test' with TESTFN. by Ka-Ping Yee · 23 years ago
  92. ca956e2 When catching errors from os.rmdir(), test for os.error, not IOError! by Guido van Rossum · 23 years ago
  93. d74bc43 Make names in __future__.py bind to class instances instead of 2-tuples. by Tim Peters · 23 years ago
  94. fc35de4 test_global was broken by some recent checkin. Repairing. by Tim Peters · 23 years ago
  95. 9aa643c Test interaction of global and nested scopes -- thanks to Samuele Pedroni. by Guido van Rossum · 23 years ago
  96. 2510831 Whitespace normalization. by Tim Peters · 23 years ago
  97. 40fc160 final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be by Skip Montanaro · 23 years ago
  98. 5c01534 Add tests for the .copy() methods of both weak dictionary classes. by Fred Drake · 23 years ago
  99. 2922ea8 Add test case for global stmt at module level. by Jeremy Hylton · 23 years ago
  100. 42efed0 update output to reflect exception that is now raised by Jeremy Hylton · 23 years ago