You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2017. It is now read-only.
Since this changes 32edb29unittest.mock.Mock being detected
as asyncio.Future. asyncio.futures.isfuture checks for private attribute _asyncio_future_blocking
to be not None and Mock() (without specs) returns new mock as this attribute.
The use case is here aio-libs-abandoned/aioredis-py#161 — basically, function wrapped with asyncio.coroutine
and set as Mock's method side_effect started to raise TypeError.