(no title)
scribu | 3 months ago
You're right, the equivalent JS script produces the same sequence of outputs.
It turns out there is a way to emulate Python's asyncio.create_task().
Python:
await asyncio.create_task(child())
JavaScript: const childTask = new Promise((resolve) => {
setTimeout(() => child().then(resolve), 0)
})
await childTask
No comments yet.