diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2016-01-11 12:25:40 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2016-01-11 12:25:40 +0200 |
commit | 4ea31f5b86e946301d60251e5ea72e87dda34e46 (patch) | |
tree | 16e604c2fde715d8417574e60a718afdf312b496 /Lib/asyncio | |
parent | 3feb9460ed919eaea34548fb655e63da194e546e (diff) | |
parent | 9d976fa75f7862891bca4b66129ec07909683a83 (diff) | |
download | cpython-git-4ea31f5b86e946301d60251e5ea72e87dda34e46.tar.gz |
merge 3.4
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py index 3c25e2d278..c37aa4195d 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 |