diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-07 07:49:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-07 07:49:58 (GMT) |
commit | 1acbf853c8be743c88141501ae879d63eb8ce209 (patch) | |
tree | 436fd38b15cda0f644ccae8d238096087c17f63d /Doc/tutorial | |
parent | a5f3a507345c8a01d99960a036dfa9d1baf8da10 (diff) | |
parent | 6dff0205b724669cc0469dd65a3f7edc5a69e1e7 (diff) | |
download | cpython-1acbf853c8be743c88141501ae879d63eb8ce209.zip cpython-1acbf853c8be743c88141501ae879d63eb8ce209.tar.gz cpython-1acbf853c8be743c88141501ae879d63eb8ce209.tar.bz2 |
Issue #26736: Used HTTPS for external links in the documentation if possible.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/floatingpoint.rst | 2 | ||||
-rw-r--r-- | Doc/tutorial/interactive.rst | 2 | ||||
-rw-r--r-- | Doc/tutorial/stdlib.rst | 2 | ||||
-rw-r--r-- | Doc/tutorial/whatnow.rst | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Doc/tutorial/floatingpoint.rst b/Doc/tutorial/floatingpoint.rst index 9c3c143..d440e53 100644 --- a/Doc/tutorial/floatingpoint.rst +++ b/Doc/tutorial/floatingpoint.rst @@ -155,7 +155,7 @@ which implements arithmetic based on rational numbers (so the numbers like If you are a heavy user of floating point operations you should take a look at the Numerical Python package and many other packages for mathematical and -statistical operations supplied by the SciPy project. See <http://scipy.org>. +statistical operations supplied by the SciPy project. See <https://scipy.org>. Python provides tools that may help on those rare occasions when you really *do* want to know the exact value of a float. The diff --git a/Doc/tutorial/interactive.rst b/Doc/tutorial/interactive.rst index abf30f0..38d0212 100644 --- a/Doc/tutorial/interactive.rst +++ b/Doc/tutorial/interactive.rst @@ -49,6 +49,6 @@ into other applications. Another similar enhanced interactive environment is bpython_. -.. _GNU Readline: http://tiswww.case.edu/php/chet/readline/rltop.html +.. _GNU Readline: https://tiswww.case.edu/php/chet/readline/rltop.html .. _IPython: http://ipython.scipy.org/ .. _bpython: http://www.bpython-interpreter.org/ diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index f9ed46d..7288873 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -152,7 +152,7 @@ The :mod:`statistics` module calculates basic statistical properties >>> statistics.variance(data) 1.3720238095238095 -The SciPy project <http://scipy.org> has many other modules for numerical +The SciPy project <https://scipy.org> has many other modules for numerical computations. .. _tut-internet-access: diff --git a/Doc/tutorial/whatnow.rst b/Doc/tutorial/whatnow.rst index 479542c..1ea22ae 100644 --- a/Doc/tutorial/whatnow.rst +++ b/Doc/tutorial/whatnow.rst @@ -43,7 +43,7 @@ More Python resources: for download. Once you begin releasing code, you can register it here so that others can find it. -* http://code.activestate.com/recipes/langs/python/: The Python Cookbook is a +* https://code.activestate.com/recipes/langs/python/: The Python Cookbook is a sizable collection of code examples, larger modules, and useful scripts. Particularly notable contributions are collected in a book also titled Python Cookbook (O'Reilly & Associates, ISBN 0-596-00797-3.) @@ -51,7 +51,7 @@ More Python resources: * http://www.pyvideo.org collects links to Python-related videos from conferences and user-group meetings. -* http://scipy.org: The Scientific Python project includes modules for fast +* https://scipy.org: The Scientific Python project includes modules for fast array computations and manipulations plus a host of packages for such things as linear algebra, Fourier transforms, non-linear solvers, random number distributions, statistical analysis and the like. |