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.

classification
Title: asyncio.iscoroutinefunction(.asend) returns False
Type: behavior Stage:
Components: asyncio Versions: Python 3.7, Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Radu Matei Lăcraru, asvetlov, yselivanov
Priority: normal Keywords:

Created on 2019-06-07 08:57 by Radu Matei Lăcraru, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg344910 - (view) Author: Radu Matei Lăcraru (Radu Matei Lăcraru) Date: 2019-06-07 08:57
asyncio.iscoroutinefunction(<async_generator>.__anext__)
asyncio.iscoroutinefunction(<async_generator>.asend)
asyncio.iscoroutinefunction(<async_generator>.athrow)
asyncio.iscoroutinefunction(<async_generator>.aclose)

All of these return False, is this the intended behavior? Aren't all of these in fact coroutine functions?
History
Date User Action Args
2022-04-11 14:59:16adminsetgithub: 81371
2019-06-07 08:57:50Radu Matei Lăcrarucreate