1. 48ebc26 Disable gc when running test_trace, or we may record the __del__ of collected objects. by Amaury Forgeot d'Arc · 17 years ago
  2. 5216721 Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0). by Amaury Forgeot d'Arc · 17 years ago
  3. 9686585 Issue #2670: urllib2.build_opener() failed when two handlers by Amaury Forgeot d'Arc · 17 years ago
  4. a5489d4 Comment typo by Andrew M. Kuchling · 17 years ago
  5. eac43af Correct an apparent refleak in test_pkgutil: zipimport._zip_directory_cache contains by Amaury Forgeot d'Arc · 17 years ago
  6. d6d5148 Add test for tanh(-0.) == -0. on IEEE 754 systems by Mark Dickinson · 17 years ago
  7. cec3f13 Yet more explicit special case handling to make by Mark Dickinson · 17 years ago
  8. 9f99d70 Report additional diagnostic information in by Mark Dickinson · 17 years ago
  9. e941d97 Additional tests for math.pow, and extra special-case by Mark Dickinson · 17 years ago
  10. e74c8f2 Added kill, terminate and send_signal to subprocess.Popen by Christian Heimes · 17 years ago
  11. 607bff1 Some tests did not pass on repeated calls (regrtest -R::) by Amaury Forgeot d'Arc · 17 years ago
  12. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 17 years ago
  13. b131f04 resolve issue 2014 by Skip Montanaro · 17 years ago
  14. 1e88992 Add test file missing from rev 62350 by Nick Coghlan · 17 years ago
  15. c477427 Fix spliting on colons on Windows machines with a file path by limiting the by Brett Cannon · 17 years ago
  16. 25bb818 Add an explicit check for output in a test to try to diagnose a failure on by Brett Cannon · 17 years ago
  17. e3d3785 spelling by Skip Montanaro · 17 years ago
  18. 667bb4f Fix test_warnings by making the state of things more consistent for each test by Brett Cannon · 17 years ago
  19. e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 17 years ago
  20. 36a59b4 Remove the test file before writing it in case there is no write permission. by Neal Norwitz · 17 years ago
  21. f108320 better diagnostics by Gregory P. Smith · 17 years ago
  22. 8f80a6a Changed test so it no longer runs as a side effect of importing. by Jerry Seutter · 17 years ago
  23. 6c4a7c6 Fix typo with regards to self.PORT shadowing class variables with the same name. by Trent Nelson · 17 years ago
  24. 79e42a0 Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive. by Gregory P. Smith · 17 years ago
  25. e41b006 - Issue #2550: The approach used by client/server code for obtaining ports by Trent Nelson · 17 years ago
  26. 4b798bd Issue2564: Prevent a hang in "import test.autotest", which runs the entire test by Amaury Forgeot d'Arc · 17 years ago
  27. aa63d0d Make file objects as thread safe as the underlying libc FILE* implementation. by Gregory P. Smith · 17 years ago
  28. ee76777 Add enough debugging information to diagnose failures where the by Jeffrey Yasskin · 17 years ago
  29. 4bffe82 Revert r62152 (Issue #2550). Being able to observe the results of all the buildbots was certainly useful. All of the platforms that have some form of BSD lineage -- FreeBSD, OS X, Solaris and Tru64 -- all pass the test. Windows and Linux, on the other hand, don't. Windows I knew about, Linux was a surprise. Knowing this, I believe a more appropriate fix will revolve around test_support.bind_socket() -- this method needs to return a port that nothing in the system has bound already. The best way to do this may just be to rely on ephemeral ports, rather than having the user specify a desired port, then fall back to four random ports, then try 0. by Trent Nelson · 17 years ago
  30. b8e120c Issue 2550: extend test_socket.py to test SO_REUSEADDR semantics when bind() is called on identical (host, port) combinations in two separate sockets. This should raise an EADDRINUSE socket.error in all cases, irrespective of whether or not SO_REUSEADDR is set on the sockets. However, with Windows, when SO_REUSEADDR is set on the sockets, no error is thrown (an error is thrown when the option isn't set), which results in an extremely wedged python process whenever accept() is called on either of the bound sockets. I'm committing this test now to observe if it's only Windows that has this behaviour (via the buildbots). Note: this WILL break all Windows buildbots for now; once I've observed the results on other platforms, I'll revert, then start looking into a patch. by Trent Nelson · 17 years ago
  31. e71d812 Oops again. EINTR is in errno, not signal. by Jeffrey Yasskin · 17 years ago
  32. 2b860db Doh! os.read() raises an OSError, not an IOError when it's interrupted. by Jeffrey Yasskin · 17 years ago
  33. d7a2651 #1733757: the interpreter would hang on shutdown, if the function set by sys.settrace by Amaury Forgeot d'Arc · 17 years ago
  34. f7cf388 Remove debug prints; the buildbot now passes the tests by Amaury Forgeot d'Arc · 17 years ago
  35. d0a91af Apply same patch from 3k branch to try and prevent this test from hanging by Neal Norwitz · 17 years ago
  36. ab56131 Try to make test_signal less flaky. I still see some flakiness in by Jeffrey Yasskin · 17 years ago
  37. cb0f2ad A DocTestSuite cannot run multiple times: it clears its globals dictionary after the first run. by Amaury Forgeot d'Arc · 17 years ago
  38. 4d0c117 Correct the apparent refleak in test_io: by Amaury Forgeot d'Arc · 17 years ago
  39. f0a4970 Newly enabled test appears to leak: by Amaury Forgeot d'Arc · 17 years ago
  40. ce6f6c1 Fix and enable a skipped test: by Amaury Forgeot d'Arc · 17 years ago
  41. 8820f2a Add ``if __name__ == '__main__'`` to some test files where it didn't take a lot by Brett Cannon · 17 years ago
  42. 8d2a90a Generalize test.test_support.test_stdout() with a base context manager so that by Brett Cannon · 17 years ago
  43. d48a2f7 Be sure to close the file. 2 places were deleting the file, so it was probably by Neal Norwitz · 17 years ago
  44. e34c21c Make AST nodes pickleable. by Georg Brandl · 17 years ago
  45. 2c55c59 Make _fields attr for no fields consistent with _attributes attr. by Georg Brandl · 17 years ago
  46. ebc8ded Convert test_ast to unittest and add a test for r62049. by Georg Brandl · 17 years ago
  47. c87c580 Adapt test_ast to the new ExceptHandler type. by Georg Brandl · 17 years ago
  48. 5b63acd #2503 make singletons compared with "is" not == or != by Benjamin Peterson · 17 years ago
  49. 672fbf5 Still investigating on the hanging test_socket. by Amaury Forgeot d'Arc · 17 years ago
  50. 5e08e8b The buildbot "x86 W2k8 trunk" seems to hang in test_socket. by Amaury Forgeot d'Arc · 17 years ago
  51. f2bfd54 Properly check for consistency with the third argument of by Georg Brandl · 17 years ago
  52. ea13dc6 Now that Lib/test/output is gone, tests should not print anything, by Amaury Forgeot d'Arc · 17 years ago
  53. 2aece57 Correctly call the base class tearDown(); by Amaury Forgeot d'Arc · 17 years ago
  54. fc8eef3 Patch #1810 by Thomas Lee, reviewed by myself: by Georg Brandl · 17 years ago
  55. b980342 Accept patch issue2426 by Paul Kippes (kippesp). by Gregory P. Smith · 17 years ago
  56. 0001c2e This patch moves some tests from test_urllib2_net to test_urllib2_localnet. by Gregory P. Smith · 17 years ago
  57. ab364c4 Name the main method correctly so the test is run by Neal Norwitz · 17 years ago
  58. 70cea58 Bug 1503: Get the test to pass on OSX. This should make the test more by Neal Norwitz · 17 years ago
  59. 53dbcd3 Run 2to3 tests. by Martin v. Löwis · 17 years ago
  60. 36550bd Print more information the next time test_socket throws the wrong exception. by Jeffrey Yasskin · 17 years ago
  61. 023cd00 Allow use of other ports so the test can pass if 9091 is in use by Neal Norwitz · 17 years ago
  62. 8b9091f Kill a race in test_threading in which the exception info in a thread finishing by Jeffrey Yasskin · 17 years ago
  63. 7db15fe test_future3.py is a regular test file, and should be part of the test suite by Amaury Forgeot d'Arc · 17 years ago
  64. da0c025 Issue2495: tokenize.untokenize did not insert space between two consecutive string literals: by Amaury Forgeot d'Arc · 17 years ago
  65. 853e44c The bug for which there was a test in outstanding_bugs.py was agreed not to be a bug. by Georg Brandl · 17 years ago
  66. 6c052fd Fixed tokenize tests by Christian Heimes · 17 years ago
  67. 23a48ad Added test cases for single quoted strings, both forms of triple quotes, by Eric Smith · 17 years ago
  68. 3784c6b Use the new unicode literals for the io module by Christian Heimes · 17 years ago
  69. fa50bad I forgot to svn add the future test by Christian Heimes · 17 years ago
  70. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  71. fc7b3e3 Changed test so it no longer runs as a side effect of importing. by Jerry Seutter · 17 years ago
  72. 9f7af8d Changed test so it no longer runs as a side effect of importing. by Jerry Seutter · 17 years ago
  73. 22b3e3a Ensure that the mailbox is closed to prevent problems on Windows with removing by Neal Norwitz · 17 years ago
  74. 14f0bc7 Changed test so it no longer runs as a side effect of importing. by Jerry Seutter · 17 years ago
  75. 85fc3c1 Try to get this test to be less flaky. It was failing sometimes because by Neal Norwitz · 17 years ago
  76. 8e85ffa Issue #2482: Make sure that the coefficient of a Decimal by Mark Dickinson · 17 years ago
  77. 3b24ccb Issue #2478: Decimal(sqrt(0)) failed when the decimal context by Mark Dickinson · 17 years ago
  78. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  79. 80055f6 #2355: py3k warning for buffer(). by Georg Brandl · 17 years ago
  80. bb89e68 Try to get this test to be more stable: by Neal Norwitz · 17 years ago
  81. be9160b Don't try to close a non-open file. by Neal Norwitz · 17 years ago
  82. 8844096 A stab in the dark attempt to fix the alpha/tru64 buildbot problem and add more by Gregory P. Smith · 17 years ago
  83. 40f5e4c Fix a bunch of UnboundLocalErrors when the tests fail. by Neal Norwitz · 17 years ago
  84. aef18b1 Patch #2240: Implement signal.setitimer and signal.getitimer. by Martin v. Löwis · 17 years ago
  85. bbc50ea Issue 1681432: Add triangular distribution the random module. by Raymond Hettinger · 17 years ago
  86. 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 17 years ago
  87. acdb6fb Try to prevent the alarm going off early in tearDown by Neal Norwitz · 17 years ago
  88. 41d6491 Suppress failure (to avoid a flaky test) if we cannot connect to svn.python.org by Neal Norwitz · 17 years ago
  89. 3bda069 Skip the epoll test if epoll() does not work by Neal Norwitz · 17 years ago
  90. 162d719 Speed up the test by avoiding socket timeouts. by Neal Norwitz · 17 years ago
  91. 1f2995b Try to make this test a little more robust and not fail with: by Neal Norwitz · 17 years ago
  92. e70bb8d Simplify demo code. by Raymond Hettinger · 17 years ago
  93. 6415667 Small fix that complicated the test actually when that test failed. by Facundo Batista · 17 years ago
  94. 0e9ab5f Applied patch #1657 epoll and kqueue wrappers for the select module by Christian Heimes · 17 years ago
  95. d290b04 Replace hack in regrtest.py with use of sys.py3kwarning. by Steven Bethard · 17 years ago
  96. 65bb42d #2348: add py3k warning for file.softspace. by Georg Brandl · 17 years ago
  97. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 17 years ago
  98. 5a44424 #2358: add py3k warning to sys.exc_clear(). by Georg Brandl · 17 years ago
  99. 77354cf Issue #2432: give DictReader the dialect and line_num attributes by Georg Brandl · 17 years ago
  100. 3312432 #2136: allow single quotes in realm spec. by Georg Brandl · 17 years ago