[issue28634] asyncio.isfuture() should support Mocks

2016-11-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0669dcf1eb36 by Yury Selivanov in branch '3.5': Issue #28634: Fix asyncio.isfuture() to support mocks https://hg.python.org/cpython/rev/0669dcf1eb36 New changeset a02915e4c165 by Yury Selivanov in branch '3.6': Merge 3.5 (issue #28634) https://hg.py

[issue28634] asyncio.isfuture() should support Mocks

2016-11-07 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue28634] asyncio.isfuture() should support Mocks

2016-11-07 Thread Yury Selivanov
New submission from Yury Selivanov: In short: isfuture(unittest.mock.Mock()) should be False isfuture(unittest.mock.Mock(Future)) should be True This issue is a proxy for https://github.com/python/asyncio/pull/455 -- assignee: yselivanov components: asyncio messages: 280241 nosy: gvanr