blob: af528f380de18367928182778ca275533509e550 [file] [log] [blame]
Michael Foord6df8ab62014-04-14 16:09:42 -04001- Issue #17826: setting an iterable side_effect on a mock function created by
2 create_autospec now works. Patch by Kushal Das.
3
Michael Foorddfeef202014-04-14 11:23:48 -04004- Issue #20968: unittest.mock.MagicMock now supports division.
5 Patch by Johannes Baiter.
6
Larry Hastingsb9d1edb2014-01-24 06:17:25 -08007- Issue #20189: unittest.mock now no longer assumes that any object for
8 which it could get an inspect.Signature is a callable written in Python.
9 Fix courtesy of Michael Foord.
10
Michael Foorda98a5ba2013-03-19 17:22:51 -070011- Issue #17467: add readline and readlines support to mock_open in
12 unittest.mock.
13
Antoine Pitroueba505c2013-02-03 00:23:58 +010014- Issue #17015: When it has a spec, a Mock object now inspects its signature
15 when matching calls, so that arguments can be matched positionally or
16 by name.
17
Michael Foord7ea94082012-09-28 16:15:22 +010018- Issue #15323: improve failure message of Mock.assert_called_once_with
19
Nick Coghlandfb22112012-05-27 18:17:07 +100020- Issue #14857: fix regression in references to PEP 3135 implicit __class__
21 closure variable (Reopens issue #12370)
22
Michael Foordac60cfa2012-03-25 18:16:07 +010023- Issue #14295: Add unittest.mock