1. d53cf99 bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) by Serhiy Storchaka · 5 years ago
  2. 39baace Document that TestCase.assertCountEqual() can take iterables (GH-686) by jkleint · 5 years ago
  3. 42a139e bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637) by Serhiy Storchaka · 5 years ago
  4. 0f221d0 bpo-24412: Adds cleanUps for setUpClass and setUpModule. (GH-9190) by Lisa Roach · 6 years ago
  5. da2bf9f bpo-34900: Make TestCase.debug() work with subtests (GH-9707) by Bruno Oliveira · 6 years ago
  6. 77d5781 bpo-34318: Convert deprecation warnings to errors in assertRaises() etc. (GH-8623) by Serhiy Storchaka · 6 years ago
  7. 032a648 Update TestCase.assertAlmostEqual and assertNotAlmostEqual docstrings. (GH-3998) by Ron · 7 years ago
  8. 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 7 years ago
  9. 48fbe52 bpo-30664: The description of a unittest subtest now preserves the (#2265) by Serhiy Storchaka · 7 years ago
  10. 5d7a8d0 bpo-30190: improved error msg for assertAlmostEqual(delta=...) (#1331) by Giampaolo Rodola · 7 years ago
  11. bbd3cf8 Fix ref cycles in TestCase.assertRaises() (#193) by Victor Stinner · 7 years ago
  12. 16ea19f Issue #25651: Allow falsy values to be used for msg parameter of subTest() by Berker Peksag · 8 years ago
  13. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  14. 685fbed Issue #26837: assertSequenceEqual() now correctly outputs non-stringified by Serhiy Storchaka · 8 years ago
  15. 079fc7f Issue #21112: Fix regression in unittest.expectedFailure on subclasses. by Robert Collins · 9 years ago
  16. ed599b7 Issue #21112: Fix regression in unittest.expectedFailure on subclasses. by Robert Collins · 9 years ago
  17. be6caca Issue #20362: Honour TestCase.longMessage correctly in assertRegex. by Robert Collins · 9 years ago
  18. 041dd8e Issue #15836: assertRaises(), assertRaisesRegex(), assertWarns() and by Serhiy Storchaka · 9 years ago
  19. df573d6 Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and by Serhiy Storchaka · 9 years ago
  20. 4b5367c Fixed English in error message. by Serhiy Storchaka · 9 years ago
  21. e130503 Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and by Serhiy Storchaka · 9 years ago
  22. a7d00c2 Reverted issue #24134 changes (except new tests). by Serhiy Storchaka · 9 years ago
  23. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  24. 9681022 Issue #9815: assertRaises now tries to clear references to local variables in the exception's traceback. by Antoine Pitrou · 10 years ago
  25. ef1c267 backport: #20145: assert[Raises|Warns]Regex now raise TypeError on bad regex. by R David Murray · 10 years ago
  26. 031bd53 Close #19880: Fix a reference leak in unittest.TestCase. Explicitly break by Victor Stinner · 11 years ago
  27. 77622f5 Issue #18996: TestCase.assertEqual() now more cleverly shorten differing by Serhiy Storchaka · 11 years ago
  28. 0715b9f Issue #18937: Add an assertLogs() context manager to unittest.TestCase to ensure that a block of code emits a message using the logging module. by Antoine Pitrou · 11 years ago
  29. 85a2522 #8906: merge with 3.3. by Ezio Melotti · 11 years ago
  30. 31797e5 #8906: document failureException, longMessage, and maxDiff in the class docstring. Patch by Boris Feld. by Ezio Melotti · 11 years ago
  31. 67ddcca #17329: merge with 3.3. by Ezio Melotti · 11 years ago
  32. 184e593 #17329: merge with 3.2. by Ezio Melotti · 11 years ago
  33. 265281a #17329: document unittest.SkipTest. Initial patch by Zachary Ware. by Ezio Melotti · 11 years ago
  34. c9b3ef2 Issue #16997: unittest.TestCase now provides a subTest() context manager to procedurally generate, in an easy way, small test instances. by Antoine Pitrou · 11 years ago
  35. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  36. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  37. 9cfa1ff #16433: merge with 3.2. by Ezio Melotti · 12 years ago
  38. 90eea97 #16433: fix docstring of assertNotEqual. by Ezio Melotti · 12 years ago
  39. b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
  40. f99983d Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 12 years ago
  41. b05ac86 Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 12 years ago
  42. c53ae58 Drop unused import in unittest package. by Florent Xicluna · 13 years ago
  43. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  44. 0850638 merge 3.2 (#12544) by Benjamin Peterson · 13 years ago
  45. 34b2b26 this can be done without a custom dict (also fixes #12544) by Benjamin Peterson · 13 years ago
  46. 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
  47. 9490af2 #11763: merge with 3.2. by Ezio Melotti · 13 years ago
  48. edd117f #11763: merge with 3.1. by Ezio Melotti · 13 years ago
  49. 0f53501 #11282: add back the fail* methods and assertDictContainsSubset. by Ezio Melotti · 13 years ago
  50. b7af620 #11282: merge with 3.2. by Ezio Melotti · 13 years ago
  51. 361467e #11282: the fail* methods will stay around a few more versions. by Ezio Melotti · 13 years ago
  52. 1341bb0 Closes issue 11407. TestCase.run returns the result object used or created by Michael Foord · 13 years ago
  53. 2cebdd4 Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again. by Georg Brandl · 13 years ago
  54. e180d39 Issue 10573: revert unittest docs to first / second by Michael Foord · 14 years ago
  55. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  56. 57bd00a Adopt symmetric names for arguments (actual/expected --> first/second). by Raymond Hettinger · 14 years ago
  57. 9d668da Put diff output in useful order (when the elements were first seen). by Raymond Hettinger · 14 years ago
  58. 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 14 years ago
  59. c44befb Fix docstring. by Raymond Hettinger · 14 years ago
  60. 6518f5e Fix docs and comment for r87454. by Raymond Hettinger · 14 years ago
  61. d65a901 Fix buglet. If the input was an iterator, the fallback would occur after by Raymond Hettinger · 14 years ago
  62. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  63. b3468f7 Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run by Michael Foord · 14 years ago
  64. 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
  65. 3044fa7 Use lowercase true/false in assertTrue/assertFalse messages. by Ezio Melotti · 14 years ago
  66. ed16bf4 assert that the regex given to assertRegex is non-empty. by Gregory P. Smith · 14 years ago
  67. 8f77630 #10273: Remove a "Matches" that I missed in r86910. Thanks to RDM for noticing it. by Ezio Melotti · 14 years ago
  68. 5074df6 Issue 7911: unittest.TestCase.longMessage defaults to True for improved failure messages by default by Michael Foord · 14 years ago
  69. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  70. 40b8cf5 Do not add an obsolete unittest name to Py3.2. by Raymond Hettinger · 14 years ago
  71. 6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. by Raymond Hettinger · 14 years ago
  72. 2baf1a6 #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_ by Ezio Melotti · 14 years ago
  73. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  74. 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
  75. 321d059 Remove the keyword only restriction for places and delta args in unittest.TestCase.assert[Not]AlmostEqual by Michael Foord · 14 years ago
  76. 4bc12ef Issue #9754: Similarly to assertRaises and assertRaisesRegexp, unittest by Antoine Pitrou · 14 years ago
  77. c653ce3 Fix error message for comparing single line strings in unittest.TestCase.assertEqual. by Michael Foord · 14 years ago
  78. c41d141 Merged revisions 81859 via svnmerge from by Michael Foord · 14 years ago
  79. b874874 Merged revisions 81853 via svnmerge from by Michael Foord · 14 years ago
  80. d50a6b9 Merged revisions 81770 via svnmerge from by Michael Foord · 14 years ago
  81. ac76074 Merged revisions 81753 via svnmerge from by Michael Foord · 14 years ago
  82. 9dad32e Merged revisions 81752 via svnmerge from by Michael Foord · 14 years ago
  83. cb11b25 Merged revisions 81747 via svnmerge from by Michael Foord · 14 years ago
  84. 085dfd3 Merged revisions 81739 via svnmerge from by Michael Foord · 14 years ago
  85. 2034d9a Merged revisions 81728 via svnmerge from by Michael Foord · 14 years ago
  86. 899e9a0 remove now useless __ne__ by Benjamin Peterson · 14 years ago
  87. e3ef5f1 Merged revisions 80990 via svnmerge from by Michael Foord · 14 years ago
  88. 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
  89. dccc1fc Merged revisions 79263 via svnmerge from by Benjamin Peterson · 14 years ago
  90. 91c9da3 Issue 7832. Deprecating assertSameElements in Py3k. by Michael Foord · 14 years ago
  91. 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
  92. 847a411 Merged revisions 78227,78229,78288,78348,78377,78770,78774-78776,78810 via svnmerge from by Benjamin Peterson · 14 years ago
  93. 89fad14 Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from by Georg Brandl · 14 years ago
  94. 0e31b99 Merged revisions 78131 via svnmerge from by Michael Foord · 14 years ago
  95. 34c9462 Merged revisions 78130 via svnmerge from by Michael Foord · 14 years ago
  96. 0283495 Merged revisions 78116 via svnmerge from by Michael Foord · 14 years ago
  97. 4900823 Merged revisions 78091,78094,78109 via svnmerge from by Ezio Melotti · 14 years ago
  98. b57ac6d Merged revisions 78005 via svnmerge from by Michael Foord · 14 years ago
  99. 1c42b12 Merged revisions 78003 via svnmerge from by Michael Foord · 14 years ago
  100. ad13f22 Merged revisions 77828 via svnmerge from by R. David Murray · 15 years ago