summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2016-01-11 10:25:23 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2016-01-11 10:25:23 (GMT)
commit9d976fa75f7862891bca4b66129ec07909683a83 (patch)
tree0211fb7387e4b95e327c95e972b49c65469122a4 /Lib
parentc07b16b40f0848038c407a459f21bff38973b595 (diff)
downloadcpython-9d976fa75f7862891bca4b66129ec07909683a83.zip
cpython-9d976fa75f7862891bca4b66129ec07909683a83.tar.gz
cpython-9d976fa75f7862891bca4b66129ec07909683a83.tar.bz2
Sync with asyncio
Diffstat (limited to 'Lib')
-rw-r--r--Lib/asyncio/tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
index 3c25e2d..c37aa41 100644
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -744,7 +744,7 @@ def timeout(timeout, *, loop=None):
For example:
>>> with asyncio.timeout(0.001):
- >>> yield from coro()
+ ... yield from coro()
timeout: timeout value in seconds