summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/mock.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-01-06 17:15:51 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-01-06 17:15:51 (GMT)
commit84b6fb0eea29b3b28a1a11124526b01ec0c9d17a (patch)
tree36adf93741ffd1325d0b9a3c9bd7631efbf082ab /Lib/unittest/mock.py
parent9505b03bb0d3c5828115fec9306cb976c43f04d9 (diff)
downloadcpython-84b6fb0eea29b3b28a1a11124526b01ec0c9d17a.zip
cpython-84b6fb0eea29b3b28a1a11124526b01ec0c9d17a.tar.gz
cpython-84b6fb0eea29b3b28a1a11124526b01ec0c9d17a.tar.bz2
Fix unittest.mock._Call: don't ignore name
Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter anymore. Patch written by Jiajun Huang.
Diffstat (limited to 'Lib/unittest/mock.py')
-rw-r--r--Lib/unittest/mock.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py
index f134919..dcac5a2 100644
--- a/Lib/unittest/mock.py
+++ b/Lib/unittest/mock.py
@@ -1961,9 +1961,8 @@ class _Call(tuple):
If the _Call has no name then it will match any name.
"""
- def __new__(cls, value=(), name=None, parent=None, two=False,
+ def __new__(cls, value=(), name='', parent=None, two=False,
from_kall=True):
- name = ''
args = ()
kwargs = {}
_len = len(value)