[issue35946] Ambiguous documentation for assert_called_with()

2019-08-29 Thread Ned Deily
Ned Deily added the comment: Thanks for the report and thanks for the PR! Merged for 3.8.0b4. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 -Python 3.7 ___ Python tracker

[issue35946] Ambiguous documentation for assert_called_with()

2019-08-28 Thread miss-islington
miss-islington added the comment: New changeset 612d3935ec0b2fbe88b3fae8167f0c503c61a9ca by Miss Islington (bot) in branch '3.8': bpo-35946: Improve assert_called_with documentation (GH-11796) https://github.com/python/cpython/commit/612d3935ec0b2fbe88b3fae8167f0c503c61a9ca -- nosy:

[issue35946] Ambiguous documentation for assert_called_with()

2019-08-28 Thread Ned Deily
Ned Deily added the comment: New changeset f5896a05edf5df91fb1b55bd481ba5b2a3682f4e by Ned Deily (Rémi Lapeyre) in branch 'master': bpo-35946: Improve assert_called_with documentation (GH-11796) https://github.com/python/cpython/commit/f5896a05edf5df91fb1b55bd481ba5b2a3682f4e -- nosy

[issue35946] Ambiguous documentation for assert_called_with()

2019-08-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +15255 pull_request: https://github.com/python/cpython/pull/15579 ___ Python tracker ___ __

[issue35946] Ambiguous documentation for assert_called_with()

2019-02-08 Thread Mark Forrer
Mark Forrer added the comment: Thank you Rémi! Thanks, --Mark-- On Fri, Feb 8, 2019 at 2:39 PM Rémi Lapeyre wrote: > > Rémi Lapeyre added the comment: > > Hi Mark Forrer, I opened a new PR to add this precision to > assert_called_with documentation. > > -- > nosy: +remi.lapeyre > v

[issue35946] Ambiguous documentation for assert_called_with()

2019-02-08 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Hi Mark Forrer, I opened a new PR to add this precision to assert_called_with documentation. -- nosy: +remi.lapeyre versions: +Python 3.8 ___ Python tracker __

[issue35946] Ambiguous documentation for assert_called_with()

2019-02-08 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- keywords: +patch, patch pull_requests: +11800, 11801 stage: -> patch review ___ Python tracker ___ ___ P

[issue35946] Ambiguous documentation for assert_called_with()

2019-02-08 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- keywords: +patch, patch, patch pull_requests: +11800, 11801, 11802 stage: -> patch review ___ Python tracker ___ ___

[issue35946] Ambiguous documentation for assert_called_with()

2019-02-08 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- keywords: +patch pull_requests: +11800 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue35946] Ambiguous documentation for assert_called_with()

2019-02-08 Thread Mark Forrer
New submission from Mark Forrer : The documentation for assert_called_with() is ambiguous with regard to the fact that the method only checks the most recent call. This behavior for assert_called_with() is only documented under assert_any_call(), which users are unlikely to read when making