Message368498
I couldn't reproduce the change in result for consecutive calls on master branch. They should return the same value.
./python
Python 3.9.0a6+ (heads/master:7f7e706d78, May 9 2020, 04:00:36)
[GCC 7.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import unittest.mock
>>> import inspect
>>> import asyncio
>>> inspect.iscoroutinefunction(unittest.mock.AsyncMock())
False
>>> inspect.iscoroutinefunction(unittest.mock.AsyncMock())
False
>>> inspect.iscoroutinefunction(unittest.mock.AsyncMock())
False |
|
| Date |
User |
Action |
Args |
| 2020-05-09 04:03:39 | xtreak | set | recipients:
+ xtreak, moriyoshi, lisroach |
| 2020-05-09 04:03:39 | xtreak | set | messageid: <[email protected]> |
| 2020-05-09 04:03:39 | xtreak | link | issue40573 messages |
| 2020-05-09 04:03:39 | xtreak | create | |
|