[issue27531] Documentation for assert_not_called() has wrong signature

2016-07-17 Thread Berker Peksag
Berker Peksag added the comment: Good catch, thanks Michael! -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker __

[issue27531] Documentation for assert_not_called() has wrong signature

2016-07-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset b43f61118793 by Berker Peksag in branch '3.5': Issue #27531: Update signature of Mock.assert_not_called method https://hg.python.org/cpython/rev/b43f61118793 New changeset f4541c56c353 by Berker Peksag in branch 'default': Issue #27531: Merge from 3

[issue27531] Documentation for assert_not_called() has wrong signature

2016-07-16 Thread Michael Killough
New submission from Michael Killough: The documentation for `Mock.assert_not_called` gives its signature as `assert_not_called(*args, **kwargs)`. Since 01ae1ac2daf4, its signature has just been `assert_not_called()`. I've attached a trivial patch that updates the documentation to match the new