]> granicus.if.org Git - python/commitdiff
bpo-33649: Fix markup; add another note that asyncio.run is 3.7+ (GH-9389)
authorYury Selivanov <yury@magic.io>
Tue, 18 Sep 2018 06:47:54 +0000 (02:47 -0400)
committerGitHub <noreply@github.com>
Tue, 18 Sep 2018 06:47:54 +0000 (02:47 -0400)
Doc/library/asyncio-task.rst
Doc/library/asyncio.rst

index d597234383db0dfe9967d9c2055b7599f18d2676..4f37296f4a3ed1a0080552a2ea44c13e3523a55f 100644 (file)
@@ -20,7 +20,8 @@ Coroutines
 
 Coroutines declared with async/await syntax is the preferred way of
 writing asyncio applications.  For example, the following snippet
-of code prints "hello", waits 1 second, and then prints "world"::
+of code (requires Python 3.7+) prints "hello", waits 1 second,
+and then prints "world"::
 
     >>> import asyncio
 
index bfc97001bb71edf50b7d299855abbb0fb0e38988..1511b2f75a89d71e8a9218ff65db1dfa06741eb6 100644 (file)
@@ -8,7 +8,7 @@
 
 .. sidebar:: Hello World!
 
-   .. code-block:: python
+   ::
 
        import asyncio