diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 07:37:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 07:37:29 (GMT) |
commit | cadc3fdcb5ee891b2325f7fa5c98b789ea512aa3 (patch) | |
tree | 7cf9c5f4bd20f8074adbf7ffd5eafc79685de9b3 /Doc/tutorial | |
parent | 347c3f6e346bf861b881d96f35feb5434ab8de92 (diff) | |
parent | e73778c1ac0e58d3520b37308b970073e818fa00 (diff) | |
download | cpython-cadc3fdcb5ee891b2325f7fa5c98b789ea512aa3.zip cpython-cadc3fdcb5ee891b2325f7fa5c98b789ea512aa3.tar.gz cpython-cadc3fdcb5ee891b2325f7fa5c98b789ea512aa3.tar.bz2 |
Merge with 3.4
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/classes.rst | 2 | ||||
-rw-r--r-- | Doc/tutorial/index.rst | 2 | ||||
-rw-r--r-- | Doc/tutorial/whatnow.rst | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 11e07e3..e318c09 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -643,7 +643,7 @@ class, that calls each parent only once, and that is monotonic (meaning that a class can be subclassed without affecting the precedence order of its parents). Taken together, these properties make it possible to design reliable and extensible classes with multiple inheritance. For more detail, see -http://www.python.org/download/releases/2.3/mro/. +https://www.python.org/download/releases/2.3/mro/. .. _tut-private: diff --git a/Doc/tutorial/index.rst b/Doc/tutorial/index.rst index df10385..c14b1d6 100644 --- a/Doc/tutorial/index.rst +++ b/Doc/tutorial/index.rst @@ -12,7 +12,7 @@ and rapid application development in many areas on most platforms. The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python Web site, -http://www.python.org/, and may be freely distributed. The same site also +https://www.python.org/, and may be freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation. diff --git a/Doc/tutorial/whatnow.rst b/Doc/tutorial/whatnow.rst index 979f587..a9ff6f4 100644 --- a/Doc/tutorial/whatnow.rst +++ b/Doc/tutorial/whatnow.rst @@ -30,15 +30,15 @@ the set are: More Python resources: -* http://www.python.org: The major Python Web site. It contains code, +* https://www.python.org: The major Python Web site. It contains code, documentation, and pointers to Python-related pages around the Web. This Web site is mirrored in various places around the world, such as Europe, Japan, and Australia; a mirror may be faster than the main site, depending on your geographical location. -* http://docs.python.org: Fast access to Python's documentation. +* https://docs.python.org: Fast access to Python's documentation. -* http://pypi.python.org: The Python Package Index, previously also nicknamed +* https://pypi.python.org: The Python Package Index, previously also nicknamed the Cheese Shop, is an index of user-created Python modules that are available for download. Once you begin releasing code, you can register it here so that others can find it. @@ -61,7 +61,7 @@ around 120 postings a day (with peaks up to several hundred), asking (and answering) questions, suggesting new features, and announcing new modules. Before posting, be sure to check the list of :ref:`Frequently Asked Questions <faq-index>` (also called the FAQ). -Mailing list archives are available at http://mail.python.org/pipermail/. +Mailing list archives are available at https://mail.python.org/pipermail/. The FAQ answers many of the questions that come up again and again, and may already contain the solution for your problem. |