Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Commit da1be48

Browse files
committed
Some links to official documentation
1 parent a7da346 commit da1be48

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and ``await`` keywords.
1111
* Mac OS X: install `Homebrew </usr/bin/ruby -e "$(curl -fsSL
1212
https://raw.githubusercontent.com/Homebrew/install/master/install)">`_ and
1313
then type ``brew install python3``
14-
* Linux: Ubuntu 16.04+ and Arch linux ship with Python 3.5 included
14+
* Linux: Ubuntu 16.04+ and Arch linux ship with Python 3.5 included.
1515
If you don't have Python 3.5+ on your computer, you can compile it or use `Pythonz <https://github.com/saghul/pythonz>`_
1616

1717

glossary.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Glossary
1515
The event loop is the central execution device to launch execution of coroutines and handle I/O (Network, sub-processes...)
1616

1717
future
18-
It's like a mailbox where you can subscribe to receive a result when it will be done.
18+
It's like a mailbox where you can subscribe to receive a result when it will be done. More details in `official documentation <https://docs.python.org/3/library/asyncio-task.html#future>`_
1919

2020
task
21-
It represents the execution of a coroutine and take care the result in a future.
21+
It represents the execution of a coroutine and take care the result in a future. More details in `official documentation <https://docs.python.org/3/library/asyncio-task.html#task>`_

0 commit comments

Comments
 (0)