This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients lisroach, moriyoshi, xtreak
Date 2020-05-09.04:03:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
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
History
Date User Action Args
2020-05-09 04:03:39xtreaksetrecipients: + xtreak, moriyoshi, lisroach
2020-05-09 04:03:39xtreaksetmessageid: <[email protected]>
2020-05-09 04:03:39xtreaklinkissue40573 messages
2020-05-09 04:03:39xtreakcreate