Skip to content

Commit 673a9f9

Browse files
committed
fix titles. tihnk I messed this up earlier.
1 parent 4f625b8 commit 673a9f9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Doc/howto/a-conceptual-overview-of-asyncio.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -339,19 +339,19 @@ call stack to the event loop.
339339
That might sound minor, but in a large program with many ``await``'s and a deep
340340
callstack that overhead can add up to a meaningful performance drag.
341341

342-
---------------------------------
343-
Part 2: coroutines under the hood
344-
---------------------------------
342+
------------------------------------------------
343+
A conceptual overview part 2: the nuts and bolts
344+
------------------------------------------------
345345

346346
Part 2 goes into detail on the mechanisms :mod:`!asyncio` uses to manage
347347
control flow.
348348
This is where the magic happens.
349349
You'll come away from this section knowing what ``await`` does behind the scenes
350350
and how to make your own asynchronous operators.
351351

352-
================================================
353-
coroutine.send(), await, yield and StopIteration
354-
================================================
352+
=========================
353+
Coroutines under the hood
354+
=========================
355355

356356
:mod:`!asyncio` leverages four components to pass around control.
357357

0 commit comments

Comments
 (0)