From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 18 Sep 2018 07:00:58 +0000 (-0700) Subject: bpo-33649: Fix markup; add another note that asyncio.run is 3.7+ (GH-9389) X-Git-Tag: v3.7.1rc1~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=45452b738b7f94221a94e903fb5975222fbb7a8f;p=thirdparty%2FPython%2Fcpython.git bpo-33649: Fix markup; add another note that asyncio.run is 3.7+ (GH-9389) (cherry picked from commit b042cf10c6084d14279c55a7e0d2d7595ff4e694) Co-authored-by: Yury Selivanov --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 2753998745ef..45b8b604200e 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -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 diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index bfc97001bb71..1511b2f75a89 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -8,7 +8,7 @@ .. sidebar:: Hello World! - .. code-block:: python + :: import asyncio