diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-12-13 12:45:19 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2017-12-13 12:45:19 (GMT) |
commit | 4a97809a38398930b01874d77927860d84270f16 (patch) | |
tree | 75dfc8f9c50cbcfbadcda6e7bd3f97387ff29f4f /Doc/library | |
parent | b6263ca313d9806a4b7f1a3a3441d54e6338cc94 (diff) | |
download | cpython-4a97809a38398930b01874d77927860d84270f16.zip cpython-4a97809a38398930b01874d77927860d84270f16.tar.gz cpython-4a97809a38398930b01874d77927860d84270f16.tar.bz2 |
trivial: link updates in documentation (GH-2765) (#4835)
(cherry picked from commit 4f29f3c84b74de8c208980a14bc56bffa6363121)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/mailbox.rst | 2 | ||||
-rw-r--r-- | Doc/library/ssl.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst index 81244c2..48d76a8 100644 --- a/Doc/library/mailbox.rst +++ b/Doc/library/mailbox.rst @@ -491,7 +491,7 @@ Supported mailbox formats are 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. diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 495cd59..8f219c5 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1351,7 +1351,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 :term:`bytes-like object` of DER-encoded @@ -1614,7 +1614,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:: |