(no title)
mikkelam | 3 months ago
I suppose the author meant to say that if you first called your async function and then later did `await` you would have different behavior.
mikkelam | 3 months ago
I suppose the author meant to say that if you first called your async function and then later did `await` you would have different behavior.
misiek08|3 months ago
In short: having other coroutine working and awaiting e.g. on sleep() you can get anything between „parent before” and „child start”. In Python is impossible, because child is not run as new task.