mirror of
https://github.com/python/cpython.git
synced 2025-08-29 13:15:11 +00:00
[3.9] bpo-42532: Check if NonCallableMock's spec_arg is not None instead of call its __bool__ function (GH-23613) (GH-23676)
Check if NonCallableMock's spec_arg is not None instead of call its __bool__ function
(cherry picked from commit c598a04dd2
)
Co-authored-by: idanw206 <31290383+idanw206@users.noreply.github.com>
This commit is contained in:
parent
3dcdbdeb48
commit
14f2a124e2
3 changed files with 12 additions and 1 deletions
|
@ -406,7 +406,7 @@ class NonCallableMock(Base):
|
|||
# Check if spec is an async object or function
|
||||
bound_args = _MOCK_SIG.bind_partial(cls, *args, **kw).arguments
|
||||
spec_arg = bound_args.get('spec_set', bound_args.get('spec'))
|
||||
if spec_arg and _is_async_obj(spec_arg):
|
||||
if spec_arg is not None and _is_async_obj(spec_arg):
|
||||
bases = (AsyncMockMixin, cls)
|
||||
new = type(cls.__name__, bases, {'__doc__': cls.__doc__})
|
||||
instance = _safe_super(NonCallableMock, cls).__new__(new)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue