Is this a true statement?
An
async
python function that does not include anawait
statement will not yield execution to any otherasync
functions.
Is this a valid corollary to this?
Defining a function
async
that does not include anawait
statement does not provide any performance enhancements over using the function in a synchronous manner.