[Python-checkins] cpython (3.4): Issue #22564: ssl doc: fix typos

victor.stinner python-checkins at python.org
Fri Oct 10 12:43:29 CEST 2014


https://hg.python.org/cpython/rev/54402b25f0b9
changeset:   92913:54402b25f0b9
branch:      3.4
parent:      92907:ce0316007b21
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Oct 10 12:04:15 2014 +0200
summary:
  Issue #22564: ssl doc: fix typos

files:
  Doc/library/ssl.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -1005,7 +1005,7 @@
    :data:`CERT_NONE`.  At least one of *cafile* or *capath* must be specified.
 
    This method can also load certification revocation lists (CRLs) in PEM or
-   or DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags`
+   DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags`
    must be configured properly.
 
    The *cafile* string, if present, is the path to a file of concatenated
@@ -1671,7 +1671,7 @@
 Verifying certificates
 ''''''''''''''''''''''
 
-When calling the the :class:`SSLContext` constructor directly,
+When calling the :class:`SSLContext` constructor directly,
 :const:`CERT_NONE` is the default.  Since it does not authenticate the other
 peer, it can be insecure, especially in client mode where most of time you
 would like to ensure the authenticity of the server you're talking to.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list