Skip to content

Commit 87546bf

Browse files
committed
Preparing for 4.0.2 release.
1 parent d06f48d commit 87546bf

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
4.0.2
2+
-----
3+
4+
- Issue #39915: Ensure :attr:`unittest.mock.AsyncMock.await_args_list` has
5+
call objects in the order of awaited arguments instead of using
6+
:attr:`unittest.mock.Mock.call_args` which has the last value of the call.
7+
Patch by Karthikeyan Singaravelan.
8+
19
4.0.1
210
-----
311

NEWS.d/2020-03-10-19-38-47.bpo-39915.CjPeiY.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

mock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import mock.mock as _mock
88
from mock.mock import *
99

10-
__version__ = '4.0.1'
10+
__version__ = '4.0.2'
1111
version_info = tuple(int(p) for p in
1212
re.match(r'(\d+).(\d+).(\d+)', __version__).groups())
1313

0 commit comments

Comments
 (0)