1. b6ffa79 test that TestCase doesn't get cycles by Benjamin Peterson · 13 years ago
  2. 0850638 merge 3.2 (#12544) by Benjamin Peterson · 13 years ago
  3. 34b2b26 this can be done without a custom dict (also fixes #12544) by Benjamin Peterson · 13 years ago
  4. b4dc250 Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and assertWarnsRegex now accept a keyword argument 'msg' when used as context managers. Initial patch by Winston Ewert. by Ezio Melotti · 13 years ago
  5. 9490af2 #11763: merge with 3.2. by Ezio Melotti · 13 years ago
  6. edd117f #11763: merge with 3.1. by Ezio Melotti · 13 years ago
  7. 0f53501 #11282: add back the fail* methods and assertDictContainsSubset. by Ezio Melotti · 13 years ago
  8. b7af620 #11282: merge with 3.2. by Ezio Melotti · 13 years ago
  9. 361467e #11282: the fail* methods will stay around a few more versions. by Ezio Melotti · 13 years ago
  10. 45763d0 Merge with 3.2. by Ezio Melotti · 13 years ago
  11. 60c3c9f Save a copy of sys.warnoptions in test_program. by Ezio Melotti · 13 years ago
  12. 42ec7cb Issue #10979. unittest stdout buffering now works with class and module setup and teardown. by Michael Foord · 13 years ago
  13. 98dbba5 Issue #3080: Use repr() to format the module name on error by Victor Stinner · 13 years ago
  14. e9ff2ef Closes issue 10979. unittest buffering now works with class and module setup and teardown by Michael Foord · 13 years ago
  15. 1341bb0 Closes issue 11407. TestCase.run returns the result object used or created by Michael Foord · 13 years ago
  16. 2cebdd4 Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again. by Georg Brandl · 13 years ago
  17. e180d39 Issue 10573: revert unittest docs to first / second by Michael Foord · 13 years ago
  18. cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() by Victor Stinner · 14 years ago
  19. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  20. 6f17e2d Issue 10786: unittest.TextTestRunner default stream no longer bound at import time by Michael Foord · 14 years ago
  21. 57bd00a Adopt symmetric names for arguments (actual/expected --> first/second). by Raymond Hettinger · 14 years ago
  22. efbcb1b Keep helper functions private. by Raymond Hettinger · 14 years ago
  23. 9d668da Put diff output in useful order (when the elements were first seen). by Raymond Hettinger · 14 years ago
  24. f954217 Add direct tests for the util functions. by Raymond Hettinger · 14 years ago
  25. 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 14 years ago
  26. c44befb Fix docstring. by Raymond Hettinger · 14 years ago
  27. 6518f5e Fix docs and comment for r87454. by Raymond Hettinger · 14 years ago
  28. 8396124 Add test for r87454. by Raymond Hettinger · 14 years ago
  29. d65a901 Fix buglet. If the input was an iterator, the fallback would occur after by Raymond Hettinger · 14 years ago
  30. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  31. cca5be2 Improvement to fix for issue 9926 to allow TestResult to be reused. by Michael Foord · 14 years ago
  32. f100dbd Fix minor issue in implementation of issue 10470. by Michael Foord · 14 years ago
  33. b3468f7 Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run by Michael Foord · 14 years ago
  34. addc6f5 #10573: use actual/expected consistently in unittest methods. The order of the args of assertCountEqual is also changed. by Ezio Melotti · 14 years ago
  35. 3044fa7 Use lowercase true/false in assertTrue/assertFalse messages. by Ezio Melotti · 14 years ago
  36. ed16bf4 assert that the regex given to assertRegex is non-empty. by Gregory P. Smith · 14 years ago
  37. 8f77630 #10273: Remove a "Matches" that I missed in r86910. Thanks to RDM for noticing it. by Ezio Melotti · 14 years ago
  38. 36526bf Correct comment in unittest test by Michael Foord · 14 years ago
  39. 37d120a Issue 10620: Specifying test modules by path instead of module name to 'python -m unittest' by Michael Foord · 14 years ago
  40. 5074df6 Issue 7911: unittest.TestCase.longMessage defaults to True for improved failure messages by default by Michael Foord · 14 years ago
  41. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  42. f10c400 Fix test failure in debug builds and add NEWS entry for r86908 by Ezio Melotti · 14 years ago
  43. 6090187 #10535: Enable silenced warnings in unittest by default by Ezio Melotti · 14 years ago
  44. 40b8cf5 Do not add an obsolete unittest name to Py3.2. by Raymond Hettinger · 14 years ago
  45. 6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. by Raymond Hettinger · 14 years ago
  46. 2baf1a6 #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_ by Ezio Melotti · 14 years ago
  47. b87ef8f Improve test for 'python -m unittest' launching test discovery by Michael Foord · 14 years ago
  48. 086f308 Issue 10470: 'python -m unittest' launches test discovery by default.(If you need to pass options to test discovery the discover subcommand must still be specified explicitly.) by Michael Foord · 14 years ago
  49. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  50. 6bcfade Improve unittest.TestLoader.discover docstring by Michael Foord · 14 years ago
  51. b357fb7 Issue 10326: further extend test for unpickling to ensure type lookup mechanism works after unpickling by Michael Foord · 14 years ago
  52. 8a00eec Issue 10326: extend test for pickling of TestCase instances to ensure they can be unpickled too by Michael Foord · 14 years ago
  53. 8ca6d98 Issue 10326: TestCase instances can now be pickled (they store names of instance methods instead of references to the instance methods themselves). by Michael Foord · 14 years ago
  54. 29bd840 reduce try block compass by Benjamin Peterson · 14 years ago
  55. 321d059 Remove the keyword only restriction for places and delta args in unittest.TestCase.assert[Not]AlmostEqual by Michael Foord · 14 years ago
  56. bbea35f Fix issue 9926. TestSuite subclasses that override __call__ are called correctly. by Michael Foord · 14 years ago
  57. 4bc12ef Issue #9754: Similarly to assertRaises and assertRaisesRegexp, unittest by Antoine Pitrou · 14 years ago
  58. c653ce3 Fix error message for comparing single line strings in unittest.TestCase.assertEqual. by Michael Foord · 14 years ago
  59. 2b293cf Merged revisions 81878 via svnmerge from by Michael Foord · 14 years ago
  60. c41d141 Merged revisions 81859 via svnmerge from by Michael Foord · 14 years ago
  61. b874874 Merged revisions 81853 via svnmerge from by Michael Foord · 14 years ago
  62. d50a6b9 Merged revisions 81770 via svnmerge from by Michael Foord · 14 years ago
  63. 520ed0a Merged revisions 81764 via svnmerge from by Michael Foord · 14 years ago
  64. da562f6 Merged revisions 81763 via svnmerge from by Michael Foord · 14 years ago
  65. ac76074 Merged revisions 81753 via svnmerge from by Michael Foord · 14 years ago
  66. 9dad32e Merged revisions 81752 via svnmerge from by Michael Foord · 14 years ago
  67. cb11b25 Merged revisions 81747 via svnmerge from by Michael Foord · 14 years ago
  68. 085dfd3 Merged revisions 81739 via svnmerge from by Michael Foord · 14 years ago
  69. 67c399f Test fix to use floor division. Correction from merge in previous commit. by Michael Foord · 14 years ago
  70. 2034d9a Merged revisions 81728 via svnmerge from by Michael Foord · 14 years ago
  71. 4107d31 Merged revisions 81724 via svnmerge from by Michael Foord · 14 years ago
  72. 899e9a0 remove now useless __ne__ by Benjamin Peterson · 14 years ago
  73. f707aa7 Merged revisions 81055 via svnmerge from by Michael Foord · 14 years ago
  74. ffa2e4e Merged revisions 81022 via svnmerge from by Michael Foord · 14 years ago
  75. 7316219 Merged revisions 80997 via svnmerge from by Michael Foord · 14 years ago
  76. e3ef5f1 Merged revisions 80990 via svnmerge from by Michael Foord · 14 years ago
  77. 161b024 Merged revisions 80974 via svnmerge from by Michael Foord · 14 years ago
  78. 3b2494f Merged revisions 80946 via svnmerge from by Michael Foord · 14 years ago
  79. 135d87c Merged revisions 80939 via svnmerge from by Benjamin Peterson · 14 years ago
  80. 01984e9 Merged revisions 80932 via svnmerge from by Michael Foord · 14 years ago
  81. 56fdb75 Merged revisions 80920 via svnmerge from by Michael Foord · 14 years ago
  82. 4a8cf3c Merged revisions 80918 via svnmerge from by Michael Foord · 14 years ago
  83. d23ea06 Merged revisions 80708 via svnmerge from by Michael Foord · 14 years ago
  84. de4ceab Merged revisions 80476 via svnmerge from by Michael Foord · 14 years ago
  85. 3141a63 Merged revisions 80155 via svnmerge from by R. David Murray · 14 years ago
  86. eb24d74 Port #1220212 (os.kill for Win32) to py3k. by Brian Curtin · 14 years ago
  87. b48af54 Merged revisions 79464,79471,79623,79626,79630,79632,79643,79648-79649,79679,79685,79711,79761,79774,79777,79792-79794,79877,79898-79900 via svnmerge from by Benjamin Peterson · 14 years ago
  88. c50846a Forward port total_ordering() and cmp_to_key(). by Raymond Hettinger · 14 years ago
  89. fd1b093 Merged revisions 79297,79310,79382,79425-79427,79450 via svnmerge from by Florent Xicluna · 14 years ago
  90. bf1fab4 Merged revisions 79468 via svnmerge from by Michael Foord · 14 years ago
  91. 65b69a1 Merged revisions 79437 via svnmerge from by Michael Foord · 14 years ago
  92. 2560e5c Breaking test_unittest.py into a package. Manual merge of revision 79432. by Michael Foord · 14 years ago
  93. eab4b4c Merged revisions 79274 via svnmerge from by Benjamin Peterson · 14 years ago
  94. f8197c3 Merged revisions 79270 via svnmerge from by Benjamin Peterson · 14 years ago
  95. 434ae77 Merged revisions 79268 via svnmerge from by Benjamin Peterson · 14 years ago
  96. 8769fd8 Merged revisions 79265-79266 via svnmerge from by Benjamin Peterson · 14 years ago
  97. dccc1fc Merged revisions 79263 via svnmerge from by Benjamin Peterson · 14 years ago
  98. 886af96 Merged revisions 78966,78970,79018,79026-79027,79055,79156,79159,79163-79164,79173,79176,79194,79208,79212 via svnmerge from by Benjamin Peterson · 14 years ago
  99. 91c9da3 Issue 7832. Deprecating assertSameElements in Py3k. by Michael Foord · 14 years ago
  100. 8442a60 Adding assertItemsEqual with tests. Issue 7832. assertSameElements still needs to be deprecated plus documentation needs to be updated. by Michael Foord · 14 years ago