]> granicus.if.org Git - python/commitdiff
trivial: link updates in documentation (GH-2765) (#4836)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 13 Dec 2017 12:45:13 +0000 (04:45 -0800)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Wed, 13 Dec 2017 12:45:13 +0000 (14:45 +0200)
(cherry picked from commit 4f29f3c84b74de8c208980a14bc56bffa6363121)

Doc/faq/extending.rst
Doc/howto/logging-cookbook.rst
Doc/library/mailbox.rst
Doc/library/ssl.rst

index c3806457b0302217f5834b62443dc4bcd8dee5ed..4be58d69714cf76512e55a08ab5d972cffa5b367 100644 (file)
@@ -56,7 +56,7 @@ with a tool such as `SWIG <http://www.swig.org>`_.  `SIP
 <https://riverbankcomputing.com/software/sip/intro>`__, `CXX
 <http://cxx.sourceforge.net/>`_ `Boost
 <http://www.boost.org/libs/python/doc/index.html>`_, or `Weave
-<https://scipy.github.io/devdocs/tutorial/weave.html>`_ are also
+<https://github.com/scipy/weave>`_ are also
 alternatives for wrapping C++ libraries.
 
 
index b9b5120f053d8f436de1036de038e392fc33c757..50ff76e79289f19aff319f764efd9f6c1d5e4293 100644 (file)
@@ -650,7 +650,7 @@ Using file rotation
 -------------------
 
 .. sectionauthor:: Doug Hellmann, Vinay Sajip (changes)
-.. (see <http://blog.doughellmann.com/2007/05/pymotw-logging.html>)
+.. (see <https://pymotw.com/3/logging/>)
 
 Sometimes you want to let a log file grow to a certain size, then open a new
 file and log to that. You may want to keep a certain number of these files, and
index 9f894cae1df2abe9a77e96c73d21fff1e250d6e4..9c9452f92b1b913f3db4c0d80de75cca4a2e1b7b 100644 (file)
@@ -474,7 +474,7 @@ Maildir, mbox, MH, Babyl, and MMDF.
    `Configuring Netscape Mail on Unix: Why The Content-Length Format is Bad <https://www.jwz.org/doc/content-length.html>`_
       An argument for using the original mbox format rather than a variation.
 
-   `"mbox" is a family of several mutually incompatible mailbox formats <http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/mail-mbox-formats.html>`_
+   `"mbox" is a family of several mutually incompatible mailbox formats <https://www.loc.gov/preservation/digital/formats/fdd/fdd000383.shtml>`_
       A history of mbox variations.
 
 
index 93df8d705597f9b77391930abf9806bc210ae656..5b55a82f5ecda114e1ae1fa259f6326a8ef09213 100644 (file)
@@ -1134,7 +1134,7 @@ to speed up repeated connections from the same clients.
    The *capath* string, if present, is
    the path to a directory containing several CA certificates in PEM format,
    following an `OpenSSL specific layout
-   <https://www.openssl.org/docs/ssl/SSL_CTX_load_verify_locations.html>`_.
+   <https://www.openssl.org/docs/man1.1.0/ssl/SSL_CTX_load_verify_locations.html>`_.
 
    The *cadata* object, if present, is either an ASCII string of one or more
    PEM-encoded certificates or a bytes-like object of DER-encoded
@@ -1310,7 +1310,7 @@ to speed up repeated connections from the same clients.
 
    Get statistics about the SSL sessions created or managed by this context.
    A dictionary is returned which maps the names of each `piece of information
-   <https://www.openssl.org/docs/ssl/SSL_CTX_sess_number.html>`_ to their
+   <https://www.openssl.org/docs/man1.1.0/ssl/SSL_CTX_sess_number.html>`_ to their
    numeric values.  For example, here is the total number of hits and misses
    in the session cache since the context was created::