1. 5665bc5 Issue #19594: Use specific asserts in unittest tests. by Serhiy Storchaka · 11 years ago
  2. d5d0bc3 Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv). by Antoine Pitrou · 11 years ago
  3. 51ef074 Docstring typo fix: Arithmentic -> Arithmetic. by Mark Dickinson · 11 years ago
  4. b5bc353 #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  5. d51914c #18663: document that assertAlmostEqual also works when the values are equal and add tests. by Ezio Melotti · 11 years ago
  6. 6ae4667 clean the environment from pre-existing PYTHONWARNINGS for test_warnings by Łukasz Langa · 11 years ago
  7. 5e2f593 #14971: Use class method name, not function.__name__, during unittest discovery. by R David Murray · 11 years ago
  8. 8b2cd75 Process DEFAULT values in mock side_effect that returns iterator. by Andrew Svetlov · 11 years ago
  9. 31797e5 #8906: document failureException, longMessage, and maxDiff in the class docstring. Patch by Boris Feld. by Ezio Melotti · 11 years ago
  10. 184e593 #17329: merge with 3.2. by Ezio Melotti · 11 years ago
  11. 265281a #17329: document unittest.SkipTest. Initial patch by Zachary Ware. by Ezio Melotti · 11 years ago
  12. 31a7835 #17504: remove duplicated sentence. Patch by Radu Voicilas. by Ezio Melotti · 11 years ago
  13. 0f84764 Issue #17047: remove doubled words added in 3.3 by Terry Jan Reedy · 11 years ago
  14. b71b8ec Merge by Michael Foord · 12 years ago
  15. f78f5b1 Correction to issue 17052 fix by Michael Foord · 12 years ago
  16. a23a39c Merge by Michael Foord · 12 years ago
  17. 8fd396b Issue 17502: unittest discovery should use self.testLoader by Michael Foord · 12 years ago
  18. d1da29c Merge by Michael Foord · 12 years ago
  19. 6debd76 Closes issue 15505. unittest.installHandler and non-callable signal handlers. by Michael Foord · 12 years ago
  20. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  21. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  22. 9cfa1ff #16433: merge with 3.2. by Ezio Melotti · 12 years ago
  23. 90eea97 #16433: fix docstring of assertNotEqual. by Ezio Melotti · 12 years ago
  24. b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
  25. 28d591c Closes issue 15323. Improve failure message of Mock.assert_called_once_with by Michael Foord · 12 years ago
  26. 8ef1fce Merge by Michael Foord · 12 years ago
  27. d38e6e5 Closes issue 16064. No longer hard code executable name in unittest help output. by Michael Foord · 12 years ago
  28. 7a1901f Closes issue #12376 : Pass on parameters in unittest.TextTestResult.__init__ super call by Michael Foord · 12 years ago
  29. f7c4158 Adding patch.stopall method to unittest.mock by Michael Foord · 12 years ago
  30. 7596364 Fix exception when calling reset_mock on a mock created with autospec by Michael Foord · 12 years ago
  31. 0b43bcf Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue by Nick Coghlan · 12 years ago
  32. 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
  33. 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
  34. 9cf5c9d Remove incorrect comment by Michael Foord · 12 years ago
  35. 3af125a Closes issue 14634. unittest.mock.create_autospec now supports keyword only arguments. by Michael Foord · 12 years ago
  36. 2cd4873 Closes issue 14636. mock objects raise exceptions from an iterable side_effect by Michael Foord · 12 years ago
  37. 0682a0c Minor docstring / docs corrections for unittest.mock by Michael Foord · 12 years ago
  38. 656319e Make unittest.mock.create_autospec resilient against AttributeError on original object by Michael Foord · 12 years ago
  39. c287062 unittest.mock.PropertyMock return value and attributes are now standard MagicMocks by Michael Foord · 12 years ago
  40. aa8ec7e Fix unittest.mock.patch docstring by Michael Foord · 12 years ago
  41. 54b3db8 Minor unittest.mock.patch doc / docstring improvement by Michael Foord · 12 years ago
  42. 0340ea7 unittest.mock: removed another bit of Python 2 only code by Michael Foord · 12 years ago
  43. 944e02d Adding unittest.mock documentation by Michael Foord · 12 years ago
  44. e58a562 unittest.mock: a mock created by patch with a spec as the list argument will be callable if __call__ is in the spec by Michael Foord · 12 years ago
  45. fb5d0a7 unittest.mock: remove another piece of Python 2 specific code by Michael Foord · 12 years ago
  46. 1ab27c6 Remove more Python 2 code from unittest.mock (obsolete function attributes) by Michael Foord · 12 years ago
  47. 0dccf65 Minor changes to the unittest.mock.mock_open helper by Michael Foord · 12 years ago
  48. 9925473 Addition of docstrings to unittest.mock helpers by Michael Foord · 12 years ago
  49. a74561a unittest.mock: set file_spec on first use by Michael Foord · 12 years ago
  50. 50a8c0e Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments by Michael Foord · 12 years ago
  51. 313f85f unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  52. d7c65e2 Removed XXX from unittest.mock docstring and switch to a nicer try...except...finally by Michael Foord · 12 years ago
  53. a74b3aa Remove more Python 2 compatibility cruft from unittest.mock by Michael Foord · 12 years ago
  54. c17adf4 Remove Python 2 compatibility cruft from unittest.mock by Michael Foord · 12 years ago
  55. ebff097 And another one... mock import fix. by Michael Foord · 12 years ago
  56. 83a1685 Fix another mock import by Michael Foord · 12 years ago
  57. 0ca9acd Fix import failure in mock test by Michael Foord · 12 years ago
  58. 345266a PEP 417: Adding unittest.mock by Michael Foord · 12 years ago
  59. 5738e4f Merge by Michael Foord · 12 years ago
  60. e01c62c Fix unittest test discovery for Jython by Michael Foord · 12 years ago
  61. b36c70c Move adding unittest test discovery command line options into their own method. by Michael Foord · 12 years ago
  62. 5f99ced Refactor unittest command line handling to always use optparse by Michael Foord · 12 years ago
  63. 5d036e1 merge from 3.2 testFnNames is assigned twice. by Senthil Kumaran · 13 years ago
  64. f27be5c testFnNames is assigned twice. by Senthil Kumaran · 13 years ago
  65. c53ae58 Drop unused import in unittest package. by Florent Xicluna · 13 years ago
  66. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  67. aabbda5 Merge 3.2 by Florent Xicluna · 13 years ago
  68. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  69. b6ffa79 test that TestCase doesn't get cycles by Benjamin Peterson · 13 years ago
  70. 0850638 merge 3.2 (#12544) by Benjamin Peterson · 13 years ago
  71. 34b2b26 this can be done without a custom dict (also fixes #12544) by Benjamin Peterson · 13 years ago
  72. 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
  73. 9490af2 #11763: merge with 3.2. by Ezio Melotti · 13 years ago
  74. edd117f #11763: merge with 3.1. by Ezio Melotti · 13 years ago
  75. 0f53501 #11282: add back the fail* methods and assertDictContainsSubset. by Ezio Melotti · 13 years ago
  76. b7af620 #11282: merge with 3.2. by Ezio Melotti · 13 years ago
  77. 361467e #11282: the fail* methods will stay around a few more versions. by Ezio Melotti · 13 years ago
  78. 45763d0 Merge with 3.2. by Ezio Melotti · 13 years ago
  79. 60c3c9f Save a copy of sys.warnoptions in test_program. by Ezio Melotti · 13 years ago
  80. 42ec7cb Issue #10979. unittest stdout buffering now works with class and module setup and teardown. by Michael Foord · 13 years ago
  81. 98dbba5 Issue #3080: Use repr() to format the module name on error by Victor Stinner · 13 years ago
  82. e9ff2ef Closes issue 10979. unittest buffering now works with class and module setup and teardown by Michael Foord · 13 years ago
  83. 1341bb0 Closes issue 11407. TestCase.run returns the result object used or created by Michael Foord · 13 years ago
  84. 2cebdd4 Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again. by Georg Brandl · 14 years ago
  85. e180d39 Issue 10573: revert unittest docs to first / second by Michael Foord · 14 years ago
  86. cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() by Victor Stinner · 14 years ago
  87. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  88. 6f17e2d Issue 10786: unittest.TextTestRunner default stream no longer bound at import time by Michael Foord · 14 years ago
  89. 57bd00a Adopt symmetric names for arguments (actual/expected --> first/second). by Raymond Hettinger · 14 years ago
  90. efbcb1b Keep helper functions private. by Raymond Hettinger · 14 years ago
  91. 9d668da Put diff output in useful order (when the elements were first seen). by Raymond Hettinger · 14 years ago
  92. f954217 Add direct tests for the util functions. by Raymond Hettinger · 14 years ago
  93. 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 14 years ago
  94. c44befb Fix docstring. by Raymond Hettinger · 14 years ago
  95. 6518f5e Fix docs and comment for r87454. by Raymond Hettinger · 14 years ago
  96. 8396124 Add test for r87454. by Raymond Hettinger · 14 years ago
  97. d65a901 Fix buglet. If the input was an iterator, the fallback would occur after by Raymond Hettinger · 14 years ago
  98. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  99. cca5be2 Improvement to fix for issue 9926 to allow TestResult to be reused. by Michael Foord · 14 years ago
  100. f100dbd Fix minor issue in implementation of issue 10470. by Michael Foord · 14 years ago