1. 7c530f0 Closes Issue 21238: New keyword argument `unsafe` to Mock. by Kushal Das · 10 years ago
  2. ba2e407 Closes issue 21239. unittest.mock.patch.stopall() did not work deterministically when the same name was patched multiple times. by Michael Foord · 10 years ago
  3. d3135cf Closes Issue 21222. by Kushal Das · 10 years ago
  4. 936fabd Closes issue 17660. You no longer need to explicitly pass create=True when patching builtin names. by Michael Foord · 10 years ago
  5. 6df8ab6 Issue 17826. Setting an iterable side_effect on a mock created by create_autospec now works by Michael Foord · 10 years ago
  6. dfeef20 Issue 20968. unittest.mock.MagicMock now supports division by Michael Foord · 10 years ago
  7. b9d1edb Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  8. 28d70e4 Issue #19594: Use specific asserts in unittest tests. by Serhiy Storchaka · 11 years ago
  9. 2d1d55e Remove shadowed test by Michael Foord · 11 years ago
  10. 756469e Adjust comment by Antoine Pitrou · 11 years ago
  11. 1075596 Issue #19013: add a __main__ to unittest.test.testmock to ease CLI invocation by Antoine Pitrou · 11 years ago
  12. 374a0a4 Issue #19013: add unittest.main() epilogs to unittest.mock's own test modules by Antoine Pitrou · 11 years ago
  13. 8356c4e Process DEFAULT values in mock side_effect that returns iterator. by Andrew Svetlov · 11 years ago
  14. a98a5ba Closes issue 17467. Add readline and readlines support to unittest.mock.mock_open by Michael Foord · 11 years ago
  15. 5a19e4c Issue #17047: remove doubled words added in 3.3 by Terry Jan Reedy · 11 years ago
  16. eba505c Issue #17015: When it has a spec, a Mock object now inspects its signature when matching calls, so that arguments can be matched positionally or by name. by Antoine Pitrou · 11 years ago
  17. 7ea9408 Closes issue 15323. Improve failure message of Mock.assert_called_once_with by Michael Foord · 12 years ago
  18. dfb2211 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
  19. 99c2a0d Remove incorrect comment by Michael Foord · 12 years ago
  20. 343833e Closes issue 14634. unittest.mock.create_autospec now supports keyword only arguments. by Michael Foord · 12 years ago
  21. 5ffe204 unittest.mock: removed another bit of Python 2 only code by Michael Foord · 12 years ago
  22. f62aa4e Adding unittest.mock documentation by Michael Foord · 12 years ago
  23. 0f33336 unittest.mock: remove another piece of Python 2 specific code by Michael Foord · 12 years ago
  24. eefbc0c Remove more Python 2 code from unittest.mock (obsolete function attributes) by Michael Foord · 12 years ago
  25. 478161d Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments by Michael Foord · 12 years ago
  26. ac60cfa unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  27. eb9f971 Removed XXX from unittest.mock docstring and switch to a nicer try...except...finally by Michael Foord · 12 years ago
  28. 9d1e6f2 Remove more Python 2 compatibility cruft from unittest.mock by Michael Foord · 12 years ago
  29. b9a5ba5 PEP 417: Adding unittest.mock by Michael Foord · 12 years ago
  30. 0420ef6 Ignore patch rejects too. by Robert Collins · 9 years ago
  31. b43f1ef Add NEWS by Robert Collins · 9 years ago
  32. 42cd3e2 Add PyPy to travis. by Robert Collins · 9 years ago
  33. 06587a5 Issue #20189: Four additional builtin types by Robert Collins · 9 years ago
  34. 62ae718 Just hard-depend on unittest2. by Robert Collins · 9 years ago
  35. a3ec8a9 Fix typo in test name. by Robert Collins · 9 years ago
  36. 880ae6f Some basic release process notes. by Robert Collins · 9 years ago
  37. 638f5de Ignore more editor files. by Robert Collins · 9 years ago
  38. f442bcf Add testrepository configuration. by Robert Collins · 9 years ago
  39. fd2d4b7 We never need sudo. Containers FTW. by Robert Collins · 9 years ago
  40. 38eb2be Fixup ignores. by Robert Collins · 9 years ago
  41. 05a9247 Iterating on .travis.yml. by Robert Collins · 9 years ago
  42. 001ec86 Setup Travis-CI. by Robert Collins · 9 years ago
  43. e00debf Attribution update by Michael Foord · 11 years ago
  44. 0d72ca9 License update by Michael Foord · 11 years ago
  45. 0666b04 Doc update by Michael Foord · 11 years ago
  46. 5b27297 Typo fix by Michael Foord · 11 years ago
  47. ef50244 Remove XXXX from comment by Michael Foord · 11 years ago
  48. 8344adf Restore Python 2.4 warning in the changelog by Michael Foord · 12 years ago
  49. b107953 Proper compatibility with functools.wraps by Michael Foord · 12 years ago
  50. 1572567 Fix for wraps - __wrapped__ was added in 3.2 not 3.3 by Michael Foord · 12 years ago
  51. 81fe9d5 Remove mention of Python 2.4 from PyPI page. by Michael Foord · 12 years ago
  52. 320cfad Typo fixes by Michael Foord · 12 years ago
  53. 3860ed4 Add __wrapped__ to functions decorated with patch variants by Michael Foord · 12 years ago
  54. dc1458a Final doc updates for 1.0 release by Michael Foord · 12 years ago
  55. 2df6611 Doc updates for 1.0 by Michael Foord · 12 years ago
  56. b14e284 Updates for the 1.0 release by Michael Foord · 12 years ago
  57. ac5ec18 Minor doc tweak by Michael Foord · 12 years ago
  58. 8147475 Date update by Michael Foord · 12 years ago
  59. 845f9b6 README update by Michael Foord · 12 years ago
  60. 481fb54 Updated version number by Michael Foord · 12 years ago
  61. 2bfaa5e Doc update by Michael Foord · 12 years ago
  62. 99dc7a5 Adding patch.stopall method by Michael Foord · 12 years ago
  63. b74d84f reset_mock now resets magic method mocks by Michael Foord · 12 years ago
  64. 9e6246d MagicMock.reset_mock on an autospec created mock no longer crashes by Michael Foord · 12 years ago
  65. 6836efb CHANGELOG update by Michael Foord · 12 years ago
  66. d8a78f4 Minor doc changes for new alpha release by Michael Foord · 12 years ago
  67. 3978796 Add example of exceptions on attribute access to docs by Michael Foord · 12 years ago
  68. c8dddba Support keyword only arguments in Python 3 by Michael Foord · 12 years ago
  69. 70b4ef6 Exceptions in iterable side_effect will be raised by Michael Foord · 12 years ago
  70. 767253f Committed failing test for pickling by Michael Foord · 12 years ago
  71. 446d332 Changelog update by Michael Foord · 12 years ago
  72. 594229a Docstring update by Michael Foord · 12 years ago
  73. 06d4f2e Doc fixes by Michael Foord · 12 years ago
  74. 9e1592e Move test and update code comment by Michael Foord · 12 years ago
  75. 7dad0f6 create_autospec now works with attributes that can't be fetched by Michael Foord · 12 years ago
  76. 926543d Minor update for mock_open docs by Michael Foord · 12 years ago
  77. 95b4b37 PropertyMock attributes and return values are standard MagicMocks by Michael Foord · 12 years ago
  78. fa6f9ac Doc typo fix by Michael Foord · 12 years ago
  79. 5b0c6b1 Update patch example in docs by Michael Foord · 12 years ago
  80. c4448af Updated example to patch documentation by Michael Foord · 12 years ago
  81. 87d01c5 Add example to patch documentation by Michael Foord · 12 years ago
  82. 06fb5c6 Doc / docstring improvement for patch by Michael Foord · 12 years ago
  83. d040198 Bump version number by Michael Foord · 12 years ago
  84. 0db9faf Changes for 1.0.0a1 release by Michael Foord · 12 years ago
  85. 5c241d5 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
  86. 6e71f17 Minor cleanups by Michael Foord · 12 years ago
  87. 5bcc774 Some test fixes to always clean up patches by Michael Foord · 12 years ago
  88. fbfc7f5 Update CHANGELOG by Michael Foord · 12 years ago
  89. 08f4755 Fix various bugs around spec arguments to patchers by Michael Foord · 12 years ago
  90. 06ee8ec CHANGELOG update by Michael Foord · 12 years ago
  91. 669048d Make using create=True with spec=True in patchers an error by Michael Foord · 12 years ago
  92. 7c2570e Propagate exception info in _patch.__exit__ by Michael Foord · 12 years ago
  93. 86e4ace Set file_spec on first use by Michael Foord · 12 years ago
  94. 826e1b8 Remove obsolete comments by Michael Foord · 12 years ago
  95. ef310bf Minor doc and docstring updates by Michael Foord · 12 years ago
  96. dff59d9 More documentation updates by Michael Foord · 12 years ago
  97. 54c522b Whitespace in doc changes by Michael Foord · 12 years ago
  98. 2a7a506 More documentation updates by Michael Foord · 12 years ago
  99. 8e7aed5 Documentation updates by Michael Foord · 12 years ago
  100. 62dd80f Change comparison methods on MagicMock to return NotImplemented by Michael Foord · 12 years ago