Antoine Pitrou | eba505c | 2013-02-03 00:23:58 +0100 | [diff] [blame] | 1 | - Issue #17015: When it has a spec, a Mock object now inspects its signature |
| 2 | when matching calls, so that arguments can be matched positionally or |
| 3 | by name. |
| 4 | |
Michael Foord | 7ea9408 | 2012-09-28 16:15:22 +0100 | [diff] [blame] | 5 | - Issue #15323: improve failure message of Mock.assert_called_once_with |
| 6 | |
Nick Coghlan | dfb2211 | 2012-05-27 18:17:07 +1000 | [diff] [blame] | 7 | - Issue #14857: fix regression in references to PEP 3135 implicit __class__ |
| 8 | closure variable (Reopens issue #12370) |
| 9 | |
Michael Foord | ac60cfa | 2012-03-25 18:16:07 +0100 | [diff] [blame] | 10 | - Issue #14295: Add unittest.mock |