diff options
author | Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com> | 2017-12-06 16:39:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-12-06 16:39:33 (GMT) |
commit | 1b4587a2462fc05a14be87123083322103a1f55b (patch) | |
tree | c89b0a1f6455ad4fbb7daed04576ff450cd5941f /Doc/library | |
parent | 6bf992a1ac6f3f4d0f83ead9c6403a76afdbe6eb (diff) | |
download | cpython-1b4587a2462fc05a14be87123083322103a1f55b.zip cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.gz cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.bz2 |
bpo-25910: Fixes redirection from http to https (#4674)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/email.generator.rst | 4 | ||||
-rw-r--r-- | Doc/library/hashlib.rst | 4 | ||||
-rw-r--r-- | Doc/library/othergui.rst | 6 | ||||
-rw-r--r-- | Doc/library/secrets.rst | 4 | ||||
-rw-r--r-- | Doc/library/select.rst | 2 | ||||
-rw-r--r-- | Doc/library/sqlite3.rst | 2 | ||||
-rw-r--r-- | Doc/library/ssl.rst | 2 | ||||
-rw-r--r-- | Doc/library/tkinter.rst | 4 | ||||
-rw-r--r-- | Doc/library/unittest.rst | 2 |
9 files changed, 15 insertions, 15 deletions
diff --git a/Doc/library/email.generator.rst b/Doc/library/email.generator.rst index 1e64e10..cc8e822 100644 --- a/Doc/library/email.generator.rst +++ b/Doc/library/email.generator.rst @@ -53,7 +53,7 @@ over channels that are not "8 bit clean". :data:`~email.policy.compat32` policy and ``False`` for all others). *mangle_from_* is intended for use when messages are stored in unix mbox format (see :mod:`mailbox` and `WHY THE CONTENT-LENGTH FORMAT IS BAD - <http://www.jwz.org/doc/content-length.html>`_). + <https://www.jwz.org/doc/content-length.html>`_). If *maxheaderlen* is not ``None``, refold any header lines that are longer than *maxheaderlen*, or if ``0``, do not rewrap any headers. If @@ -154,7 +154,7 @@ to be using :class:`BytesGenerator`, and not :class:`Generator`. :data:`~email.policy.compat32` policy and ``False`` for all others). *mangle_from_* is intended for use when messages are stored in unix mbox format (see :mod:`mailbox` and `WHY THE CONTENT-LENGTH FORMAT IS BAD - <http://www.jwz.org/doc/content-length.html>`_). + <https://www.jwz.org/doc/content-length.html>`_). If *maxheaderlen* is not ``None``, refold any header lines that are longer than *maxheaderlen*, or if ``0``, do not rewrap any headers. If diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index 452705f..d491691 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -482,7 +482,7 @@ Keyed hashing Keyed hashing can be used for authentication as a faster and simpler replacement for `Hash-based message authentication code -<http://en.wikipedia.org/wiki/Hash-based_message_authentication_code>`_ (HMAC). +<https://en.wikipedia.org/wiki/Hash-based_message_authentication_code>`_ (HMAC). BLAKE2 can be securely used in prefix-MAC mode thanks to the indifferentiability property inherited from BLAKE. @@ -699,7 +699,7 @@ implementation, extension code, and this documentation: You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see - http://creativecommons.org/publicdomain/zero/1.0/. + https://creativecommons.org/publicdomain/zero/1.0/. The following people have helped with development or contributed their changes to the project and the public domain according to the Creative Commons Public diff --git a/Doc/library/othergui.rst b/Doc/library/othergui.rst index d40abe1..4548459 100644 --- a/Doc/library/othergui.rst +++ b/Doc/library/othergui.rst @@ -11,9 +11,9 @@ available for Python: `PyGObject <https://wiki.gnome.org/Projects/PyGObject>`_ PyGObject provides introspection bindings for C libraries using `GObject <https://developer.gnome.org/gobject/stable/>`_. One of - these libraries is the `GTK+ 3 <http://www.gtk.org/>`_ widget set. + these libraries is the `GTK+ 3 <https://www.gtk.org/>`_ widget set. GTK+ comes with many more widgets than Tkinter provides. An online - `Python GTK+ 3 Tutorial <https://python-gtk-3-tutorial.readthedocs.org/en/latest/>`_ + `Python GTK+ 3 Tutorial <https://python-gtk-3-tutorial.readthedocs.io/>`_ is available. `PyGTK <http://www.pygtk.org/>`_ @@ -35,7 +35,7 @@ available for Python: Compared to PyQt, its licensing scheme is friendlier to non-open source applications. - `wxPython <http://www.wxpython.org>`_ + `wxPython <https://www.wxpython.org>`_ wxPython is a cross-platform GUI toolkit for Python that is built around the popular `wxWidgets <https://www.wxwidgets.org/>`_ (formerly wxWindows) C++ toolkit. It provides a native look and feel for applications on diff --git a/Doc/library/secrets.rst b/Doc/library/secrets.rst index 9bf848f..28ce472 100644 --- a/Doc/library/secrets.rst +++ b/Doc/library/secrets.rst @@ -130,7 +130,7 @@ Other functions Return ``True`` if strings *a* and *b* are equal, otherwise ``False``, in such a way as to reduce the risk of - `timing attacks <http://codahale.com/a-lesson-in-timing-attacks/>`_. + `timing attacks <https://codahale.com/a-lesson-in-timing-attacks/>`_. See :func:`hmac.compare_digest` for additional details. @@ -173,7 +173,7 @@ three digits: break -Generate an `XKCD-style passphrase <http://xkcd.com/936/>`_: +Generate an `XKCD-style passphrase <https://xkcd.com/936/>`_: .. testcode:: diff --git a/Doc/library/select.rst b/Doc/library/select.rst index bd5442c..e252e7a 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -264,7 +264,7 @@ object. Edge and Level Trigger Polling (epoll) Objects ---------------------------------------------- - http://linux.die.net/man/4/epoll + https://linux.die.net/man/4/epoll *eventmask* diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index c7b9af4..e7676a9 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -107,7 +107,7 @@ This example uses the iterator form:: The SQLite web page; the documentation describes the syntax and the available data types for the supported SQL dialect. - http://www.w3schools.com/sql/ + https://www.w3schools.com/sql/ Tutorial, reference and examples for learning SQL syntax. :pep:`249` - Database API Specification 2.0 diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 45bb65f..6122af1 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1590,7 +1590,7 @@ to speed up repeated connections from the same clients. .. versionadded:: 3.3 .. seealso:: - `SSL/TLS & Perfect Forward Secrecy <http://vincent.bernat.im/en/blog/2011-ssl-perfect-forward-secrecy.html>`_ + `SSL/TLS & Perfect Forward Secrecy <https://vincent.bernat.im/en/blog/2011-ssl-perfect-forward-secrecy>`_ Vincent Bernat. .. method:: SSLContext.wrap_socket(sock, server_side=False, \ diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index f51add2..f222fe6 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -38,7 +38,7 @@ this should open a window demonstrating a simple Tk interface. `Programming Python <http://learning-python.com/books/about-pp4e.html>`_ Book by Mark Lutz, has excellent coverage of Tkinter. - `Modern Tkinter for Busy Python Developers <http://www.amazon.com/Modern-Tkinter-Python-Developers-ebook/dp/B0071QDNLO/>`_ + `Modern Tkinter for Busy Python Developers <https://www.amazon.com/Modern-Tkinter-Python-Developers-ebook/dp/B0071QDNLO/>`_ Book by Mark Rozerman about building attractive and modern graphical user interfaces with Python and Tkinter. `Python and Tkinter Programming <https://www.manning.com/books/python-and-tkinter-programming>`_ @@ -183,7 +183,7 @@ documentation that exists. Here are some hints: `ActiveState Tcl Home Page <http://tcl.activestate.com/>`_ The Tk/Tcl development is largely taking place at ActiveState. - `Tcl and the Tk Toolkit <http://www.amazon.com/exec/obidos/ASIN/020163337X>`_ + `Tcl and the Tk Toolkit <https://www.amazon.com/exec/obidos/ASIN/020163337X>`_ The book by John Ousterhout, the inventor of Tcl. `Practical Programming in Tcl and Tk <http://www.beedub.com/book/>`_ diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 4755488..93ccd0f 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -56,7 +56,7 @@ test runner Kent Beck's original paper on testing frameworks using the pattern shared by :mod:`unittest`. - `Nose <https://nose.readthedocs.org/en/latest/>`_ and `py.test <http://pytest.org>`_ + `Nose <https://nose.readthedocs.io/>`_ and `py.test <https://docs.pytest.org/>`_ Third-party unittest frameworks with a lighter-weight syntax for writing tests. For example, ``assert func(10) == 42``. |