diff --git a/README.md b/README.md index 9c1a561..3141200 100644 --- a/README.md +++ b/README.md @@ -2263,6 +2263,7 @@ Coroutines * **Coroutine definition starts with `'async'` and its call with `'await'`.** * **`'asyncio.run()'` is the main entry point for asynchronous programs.** * **Functions wait(), gather() and as_completed() can be used when multiple coroutines need to be started at the same time.** +* **Asyncio module also provides it's own Queue, Event, Lock and Semaphore classes.** #### Runs a terminal game where you control an asterisk that must avoid numbers: diff --git a/index.html b/index.html index d3e4174..6a9ea89 100644 --- a/index.html +++ b/index.html @@ -1963,6 +1963,7 @@ ValueError: malformed node or string
  • Coroutine definition starts with 'async' and its call with 'await'.
  • 'asyncio.run(<coroutine>)' is the main entry point for asynchronous programs.
  • Functions wait(), gather() and as_completed() can be used when multiple coroutines need to be started at the same time.
  • +
  • Asyncio module also provides it's own Queue, Event, Lock and Semaphore classes.
  • Runs a terminal game where you control an asterisk that must avoid numbers:

    import asyncio, collections, curses, enum, random
     
     P = collections.namedtuple('P', 'x y')         # Position