1. 7d14015 Issue #16120: Use |yield from| in stdlib. by Andrew Svetlov · 12 years ago
  2. 28d591c Closes issue 15323. Improve failure message of Mock.assert_called_once_with by Michael Foord · 12 years ago
  3. 8ef1fce Merge by Michael Foord · 12 years ago
  4. d38e6e5 Closes issue 16064. No longer hard code executable name in unittest help output. by Michael Foord · 12 years ago
  5. 7a1901f Closes issue #12376 : Pass on parameters in unittest.TextTestResult.__init__ super call by Michael Foord · 12 years ago
  6. f7c4158 Adding patch.stopall method to unittest.mock by Michael Foord · 12 years ago
  7. 7596364 Fix exception when calling reset_mock on a mock created with autospec by Michael Foord · 12 years ago
  8. 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
  9. 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
  10. 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
  11. 9cf5c9d Remove incorrect comment by Michael Foord · 12 years ago
  12. 3af125a Closes issue 14634. unittest.mock.create_autospec now supports keyword only arguments. by Michael Foord · 12 years ago
  13. 2cd4873 Closes issue 14636. mock objects raise exceptions from an iterable side_effect by Michael Foord · 12 years ago
  14. 0682a0c Minor docstring / docs corrections for unittest.mock by Michael Foord · 12 years ago
  15. 656319e Make unittest.mock.create_autospec resilient against AttributeError on original object by Michael Foord · 12 years ago
  16. c287062 unittest.mock.PropertyMock return value and attributes are now standard MagicMocks by Michael Foord · 12 years ago
  17. aa8ec7e Fix unittest.mock.patch docstring by Michael Foord · 12 years ago
  18. 54b3db8 Minor unittest.mock.patch doc / docstring improvement by Michael Foord · 12 years ago
  19. 0340ea7 unittest.mock: removed another bit of Python 2 only code by Michael Foord · 12 years ago
  20. 944e02d Adding unittest.mock documentation by Michael Foord · 12 years ago
  21. 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
  22. fb5d0a7 unittest.mock: remove another piece of Python 2 specific code by Michael Foord · 12 years ago
  23. 1ab27c6 Remove more Python 2 code from unittest.mock (obsolete function attributes) by Michael Foord · 12 years ago
  24. 0dccf65 Minor changes to the unittest.mock.mock_open helper by Michael Foord · 12 years ago
  25. 9925473 Addition of docstrings to unittest.mock helpers by Michael Foord · 12 years ago
  26. a74561a unittest.mock: set file_spec on first use by Michael Foord · 12 years ago
  27. 50a8c0e Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments by Michael Foord · 12 years ago
  28. 313f85f unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  29. d7c65e2 Removed XXX from unittest.mock docstring and switch to a nicer try...except...finally by Michael Foord · 12 years ago
  30. a74b3aa Remove more Python 2 compatibility cruft from unittest.mock by Michael Foord · 12 years ago
  31. c17adf4 Remove Python 2 compatibility cruft from unittest.mock by Michael Foord · 12 years ago
  32. ebff097 And another one... mock import fix. by Michael Foord · 12 years ago
  33. 83a1685 Fix another mock import by Michael Foord · 12 years ago
  34. 0ca9acd Fix import failure in mock test by Michael Foord · 12 years ago
  35. 345266a PEP 417: Adding unittest.mock by Michael Foord · 12 years ago
  36. 5738e4f Merge by Michael Foord · 12 years ago
  37. e01c62c Fix unittest test discovery for Jython by Michael Foord · 12 years ago
  38. b36c70c Move adding unittest test discovery command line options into their own method. by Michael Foord · 12 years ago
  39. 5f99ced Refactor unittest command line handling to always use optparse by Michael Foord · 12 years ago
  40. 5d036e1 merge from 3.2 testFnNames is assigned twice. by Senthil Kumaran · 13 years ago
  41. f27be5c testFnNames is assigned twice. by Senthil Kumaran · 13 years ago
  42. c53ae58 Drop unused import in unittest package. by Florent Xicluna · 13 years ago
  43. 5d1155c Closes #13258: Use callable() built-in in the standard library. by Florent Xicluna · 13 years ago
  44. aabbda5 Merge 3.2 by Florent Xicluna · 13 years ago
  45. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  46. b6ffa79 test that TestCase doesn't get cycles by Benjamin Peterson · 13 years ago
  47. 0850638 merge 3.2 (#12544) by Benjamin Peterson · 13 years ago
  48. 34b2b26 this can be done without a custom dict (also fixes #12544) by Benjamin Peterson · 13 years ago
  49. 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
  50. 9490af2 #11763: merge with 3.2. by Ezio Melotti · 13 years ago
  51. edd117f #11763: merge with 3.1. by Ezio Melotti · 13 years ago
  52. 0f53501 #11282: add back the fail* methods and assertDictContainsSubset. by Ezio Melotti · 13 years ago
  53. b7af620 #11282: merge with 3.2. by Ezio Melotti · 13 years ago
  54. 361467e #11282: the fail* methods will stay around a few more versions. by Ezio Melotti · 13 years ago
  55. 45763d0 Merge with 3.2. by Ezio Melotti · 13 years ago
  56. 60c3c9f Save a copy of sys.warnoptions in test_program. by Ezio Melotti · 13 years ago
  57. 42ec7cb Issue #10979. unittest stdout buffering now works with class and module setup and teardown. by Michael Foord · 13 years ago
  58. 98dbba5 Issue #3080: Use repr() to format the module name on error by Victor Stinner · 13 years ago
  59. e9ff2ef Closes issue 10979. unittest buffering now works with class and module setup and teardown by Michael Foord · 13 years ago
  60. 1341bb0 Closes issue 11407. TestCase.run returns the result object used or created by Michael Foord · 13 years ago
  61. 2cebdd4 Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again. by Georg Brandl · 13 years ago
  62. e180d39 Issue 10573: revert unittest docs to first / second by Michael Foord · 14 years ago
  63. cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() by Victor Stinner · 14 years ago
  64. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  65. 6f17e2d Issue 10786: unittest.TextTestRunner default stream no longer bound at import time by Michael Foord · 14 years ago
  66. 57bd00a Adopt symmetric names for arguments (actual/expected --> first/second). by Raymond Hettinger · 14 years ago
  67. efbcb1b Keep helper functions private. by Raymond Hettinger · 14 years ago
  68. 9d668da Put diff output in useful order (when the elements were first seen). by Raymond Hettinger · 14 years ago
  69. f954217 Add direct tests for the util functions. by Raymond Hettinger · 14 years ago
  70. 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 14 years ago
  71. c44befb Fix docstring. by Raymond Hettinger · 14 years ago
  72. 6518f5e Fix docs and comment for r87454. by Raymond Hettinger · 14 years ago
  73. 8396124 Add test for r87454. by Raymond Hettinger · 14 years ago
  74. d65a901 Fix buglet. If the input was an iterator, the fallback would occur after by Raymond Hettinger · 14 years ago
  75. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  76. cca5be2 Improvement to fix for issue 9926 to allow TestResult to be reused. by Michael Foord · 14 years ago
  77. f100dbd Fix minor issue in implementation of issue 10470. by Michael Foord · 14 years ago
  78. b3468f7 Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run by Michael Foord · 14 years ago
  79. 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
  80. 3044fa7 Use lowercase true/false in assertTrue/assertFalse messages. by Ezio Melotti · 14 years ago
  81. ed16bf4 assert that the regex given to assertRegex is non-empty. by Gregory P. Smith · 14 years ago
  82. 8f77630 #10273: Remove a "Matches" that I missed in r86910. Thanks to RDM for noticing it. by Ezio Melotti · 14 years ago
  83. 36526bf Correct comment in unittest test by Michael Foord · 14 years ago
  84. 37d120a Issue 10620: Specifying test modules by path instead of module name to 'python -m unittest' by Michael Foord · 14 years ago
  85. 5074df6 Issue 7911: unittest.TestCase.longMessage defaults to True for improved failure messages by default by Michael Foord · 14 years ago
  86. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  87. f10c400 Fix test failure in debug builds and add NEWS entry for r86908 by Ezio Melotti · 14 years ago
  88. 6090187 #10535: Enable silenced warnings in unittest by default by Ezio Melotti · 14 years ago
  89. 40b8cf5 Do not add an obsolete unittest name to Py3.2. by Raymond Hettinger · 14 years ago
  90. 6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. by Raymond Hettinger · 14 years ago
  91. 2baf1a6 #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_ by Ezio Melotti · 14 years ago
  92. b87ef8f Improve test for 'python -m unittest' launching test discovery by Michael Foord · 14 years ago
  93. 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
  94. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  95. 6bcfade Improve unittest.TestLoader.discover docstring by Michael Foord · 14 years ago
  96. b357fb7 Issue 10326: further extend test for unpickling to ensure type lookup mechanism works after unpickling by Michael Foord · 14 years ago
  97. 8a00eec Issue 10326: extend test for pickling of TestCase instances to ensure they can be unpickled too by Michael Foord · 14 years ago
  98. 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
  99. 29bd840 reduce try block compass by Benjamin Peterson · 14 years ago
  100. 321d059 Remove the keyword only restriction for places and delta args in unittest.TestCase.assert[Not]AlmostEqual by Michael Foord · 14 years ago