You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/extra/classic-coroutines/index.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,9 +58,9 @@ generator-based coroutines::
58
58
native coroutines::
59
59
A coroutine defined with `async def`. You can delegate from a native coroutine to another native coroutine or to a generator-based coroutine using the `await` keyword, similar to how classic coroutines use `yield from`.
60
60
61
-
Native coroutines and generator-based coroutines are intended specifically for asynchronous I/O programming. As such, we'll get back to them in <<async_ch>>—Basic Asyncio.
62
-
61
+
Native coroutines and generator-based coroutines are intended specifically for asynchronous I/O programming.
63
62
This post is about _classic coroutines_.
63
+
64
64
Although native coroutines evolved from classic coroutines, they don't replace them completely.
65
65
Classic coroutines have some useful behaviors that native coroutines can't emulate—and vice-versa,
66
66
native coroutines have features that are missing in classic coroutines.
0 commit comments