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

Commit e0af0bf

Browse files
mathieuiludovic-gasc
authored andcommitted
Fix repo url & use https whenever possible (#7)
Most of those are redirected to the right ones, but it doesn’t hurt.
1 parent 455a767 commit e0af0bf

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Asyncio documentation
22
=====================
33

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

88

@@ -50,4 +50,4 @@ See also
5050

5151
* https://github.com/python/asyncio
5252
* http://krondo.com/an-introduction-to-asynchronous-programming-and-twisted/
53-
* http://curio.readthedocs.io/en/latest/tutorial.html
53+
* https://curio.readthedocs.io/en/latest/tutorial.html

http_client.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ HTTP client example:
77
.. literalinclude:: examples/http_client.py
88

99
For more information, see `aiohttp documentation
10-
<http://aiohttp.readthedocs.io/>`_.
10+
<https://aiohttp.readthedocs.io/>`_.

producer_consumer.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Simple example
66
==============
77

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

1111
.. literalinclude:: examples/producer_consumer.py
1212

@@ -16,11 +16,11 @@ Using task_done()
1616

1717

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

2323
.. literalinclude:: examples/producer_consumer_2.py
2424

2525
For more information, see the `asyncio queue documentation
26-
<http://docs.python.org/3/library/asyncio-queue.html>`_.
26+
<https://docs.python.org/3/library/asyncio-queue.html>`_.

webscraper.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ Install with::
362362
$ pip install aiohttp
363363

364364

365-
.. _aiohttp: http://aiohttp.readthedocs.io/en/stable/
365+
.. _aiohttp: https://aiohttp.readthedocs.io/en/stable/
366366

367367
The whole program looks like this:
368368

0 commit comments

Comments
 (0)