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

Fix repo url and use https whenever possible #7

Merged
merged 1 commit into from
Jul 25, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Asyncio documentation
=====================

* Online doc: http://asyncio.readthedocs.io/
* GitHub: https://github.com/haypo/asyncio-doc
* Online doc: https://asyncio.readthedocs.io/
* GitHub: https://github.com/asyncio-doc/asyncio-doc
* AsyncIO documentation is written with `Sphinx <http://www.sphinx-doc.org/>`_.


Expand Down Expand Up @@ -50,4 +50,4 @@ See also

* https://github.com/python/asyncio
* http://krondo.com/an-introduction-to-asynchronous-programming-and-twisted/
* http://curio.readthedocs.io/en/latest/tutorial.html
* https://curio.readthedocs.io/en/latest/tutorial.html
2 changes: 1 addition & 1 deletion http_client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ HTTP client example:
.. literalinclude:: examples/http_client.py

For more information, see `aiohttp documentation
<http://aiohttp.readthedocs.io/>`_.
<https://aiohttp.readthedocs.io/>`_.
8 changes: 4 additions & 4 deletions producer_consumer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Simple example
==============

A simple producer/consumer example, using an `asyncio.Queue
<http://docs.python.org/3/library/asyncio-queue.html#asyncio.Queue>`_:
<https://docs.python.org/3/library/asyncio-queue.html#asyncio.Queue>`_:

.. literalinclude:: examples/producer_consumer.py

Expand All @@ -16,11 +16,11 @@ Using task_done()


A simple producer/consumer example, using `Queue.task_done
<http://docs.python.org/3/library/asyncio-queue.html#asyncio.Queue.task_done>`_
<https://docs.python.org/3/library/asyncio-queue.html#asyncio.Queue.task_done>`_
and `Queue.join
<http://docs.python.org/3/library/asyncio-queue.html#asyncio.Queue.join>`_:
<https://docs.python.org/3/library/asyncio-queue.html#asyncio.Queue.join>`_:

.. literalinclude:: examples/producer_consumer_2.py

For more information, see the `asyncio queue documentation
<http://docs.python.org/3/library/asyncio-queue.html>`_.
<https://docs.python.org/3/library/asyncio-queue.html>`_.
2 changes: 1 addition & 1 deletion webscraper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ Install with::
$ pip install aiohttp


.. _aiohttp: http://aiohttp.readthedocs.io/en/stable/
.. _aiohttp: https://aiohttp.readthedocs.io/en/stable/

The whole program looks like this:

Expand Down