1. 035ecbe #8906: document failureException, longMessage, and maxDiff in the class docstring. Patch by Boris Feld. by Ezio Melotti · 12 years ago
  2. 352def0 #17329: document unittest.SkipTest. Initial patch by Zachary Ware. by Ezio Melotti · 12 years ago
  3. 4bb142b Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  4. 9b19c4b #16433: fix docstring of assertNotEqual. by Ezio Melotti · 13 years ago
  5. ed11a5d Issue #8767: Restore building with --disable-unicode. by Martin v. Löwis · 13 years ago
  6. 6949392 #14832: 'first' now really refers to first arg in unittest assertItemsEqual by R David Murray · 13 years ago
  7. 3815316 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 · 13 years ago
  8. 83c14fe this can be done without a custom dict (also fixes #12544) by Benjamin Peterson · 14 years ago
  9. 67a3e83 Issue 10326: Fix regression to get test cases to pickle again. by Raymond Hettinger · 14 years ago
  10. 34b32d6 #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are too long. by Ezio Melotti · 14 years ago
  11. 4c9e91a Issue #10242: backport of more fixes to unittest.TestCase.assertItemsEqual by Michael Foord · 14 years ago
  12. e6e0e26 Issue 10242. Switching unittest.TestCase.assertItemsEqual to use a collections.Counter under the hood. by Michael Foord · 14 years ago
  13. a17f076 Issue 10611. SystemExit should not cause a unittest test run to exit. by Michael Foord · 14 years ago
  14. c139a56 Merged revisions 87377 via svnmerge from by Ezio Melotti · 14 years ago
  15. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  16. 94f071c Fix error message for comparing single line strings in unittest.TestCase.assertEqual. by Michael Foord · 15 years ago
  17. ae1bb9a Typo correction. by Michael Foord · 15 years ago
  18. 0fedb28 Issue 8948. cleanup functions are not run by unittest.TestCase.debug(), plus class and module teardowns are not run by unittest.TestSuite.debug(). by Michael Foord · 15 years ago
  19. c532c57 Code formatting change. by Michael Foord · 15 years ago
  20. f2c25c5 Fix unittest tests after previous commit. by Michael Foord · 15 years ago
  21. 5fe21ff unittest.TestCase assertion methods inform you when they have omitted an over long diff on failure. Issue 8351. by Michael Foord · 15 years ago
  22. 674648e unittest.TestCase.assertDictEqual and assertMultilineEqual provide better default failure messages in the event of long diffs. by Michael Foord · 15 years ago
  23. e37d75f Removed the new max_diff argument to assertSequenceEqual. All unittest.TestCase assert methods that use difflib to produce failure messages now truncate overly long messages. New class attribute unittest.TestCase.maxDiff to configure this if necessary. Issue 8351. by Michael Foord · 15 years ago
  24. a441287 Extract error message truncating into a method (unittest.TestCase._truncateMessage). by Michael Foord · 15 years ago
  25. 0100702 Issue 8351. Suppress large diffs in unittest.TestCase.assertSequenceEqual. by Michael Foord · 15 years ago
  26. 959c16d Updating documentation and adding docstrings to unittest.TestCase.assertRegexpMatches and assertNotRegexpMatches. Issue 8038. by Michael Foord · 15 years ago
  27. a04c7a0 Issue #8038: Addition of unittest.TestCase.assertNotRegexpMatches by Michael Foord · 15 years ago
  28. a7e08fe Addition of delta keyword argument to unittest.TestCase.assertAlmostEquals and assertNotAlmostEquals by Michael Foord · 15 years ago
  29. b1aa30f Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest. by Michael Foord · 15 years ago
  30. 4a0f8b8 Silence more py3k warnings in unittest.case. by Florent Xicluna · 15 years ago
  31. 98e7b76 Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour by Michael Foord · 15 years ago
  32. 08611b5 Remove accidental print statement from last commit. by Michael Foord · 15 years ago
  33. a715255 Fix accidental name rebinding in unittest py3k warning filtering. by Michael Foord · 15 years ago
  34. 5ffa325 Addition of setUpClass and setUpModule shared fixtures to unittest. by Michael Foord · 15 years ago
  35. 53e8eea Fix for potentials errors in constructing unittest failure messages. Plus skipped test methods no longer run setUp and tearDown (Issue 8059) by Michael Foord · 15 years ago
  36. 1f3b4e1 Fix some py3k warnings in the standard library. by Florent Xicluna · 15 years ago
  37. ae3db0a Support for old TestResult object (unittest) with warnings when using unsupported features. by Michael Foord · 15 years ago
  38. c2294dd Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode issues when constructing failure messages. Issue 7956 by Michael Foord · 15 years ago
  39. 225a099 unittest.TestCase uses safe_repr for producing failure messages. Partial fix for issue 7956 by Michael Foord · 15 years ago
  40. 67dfc77 Remove deprecation on assert_. It is used too frequently. by Michael Foord · 15 years ago
  41. db43b5a Issue 7893 and Issue 7588 by Michael Foord · 15 years ago
  42. fe6349c Make assertMultiLineEqual the default for comparing unicode strings. by Michael Foord · 15 years ago
  43. cd4f657 Fix exc_value -> exception in docstring by Ezio Melotti · 15 years ago
  44. 2bd52dc assertRaises as context manager now allows you to access exception as documented by Michael Foord · 15 years ago
  45. dc3694b Rename "exc_value" attribute on assertRaises context manager to "exception". by Georg Brandl · 15 years ago
  46. b0eb4d3 Use "regexp" consistently. by Georg Brandl · 15 years ago
  47. 757cc4d Correction to docstring correction. by Michael Foord · 15 years ago
  48. d0edec3 Improving docstrings in unittest.TestCase by Michael Foord · 15 years ago
  49. 05b4171 Fix typo in assertSequenceEqual docstring. by R. David Murray · 15 years ago
  50. b9d4963 Issue #7092: Fix the DeprecationWarnings emitted by the standard library by Antoine Pitrou · 15 years ago
  51. d46430b now that deepcopy can handle instance methods, this hack can be removed #7409 by Benjamin Peterson · 15 years ago
  52. f895cf5 #7031: Add TestCase.assertIsInstance and negated method. by Georg Brandl · 16 years ago
  53. 46cc46a Fix some weird whitespace and two other overlong lines. by Georg Brandl · 16 years ago
  54. c3f7937 Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. by Michael Foord · 16 years ago
  55. e2a7798 issue 6275 by Kristján Valur Jónsson · 16 years ago
  56. d7b0eeb split unittest.py into a package by Benjamin Peterson · 16 years ago