[Python-checkins] cpython (3.4): Issue #22072: Fix a couple of SSL doc typos. Patch by Alex Gaynor.

zach.ware python-checkins at python.org
Fri Jul 25 20:32:08 CEST 2014


http://hg.python.org/cpython/rev/1c7567ec6292
changeset:   91864:1c7567ec6292
branch:      3.4
parent:      91862:516877b962be
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Fri Jul 25 13:30:50 2014 -0500
summary:
  Issue #22072: Fix a couple of SSL doc typos.  Patch by Alex Gaynor.

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
@@ -787,7 +787,7 @@
    Perform the SSL setup handshake.
 
    .. versionchanged:: 3.4
-      The handshake method also performce :func:`match_hostname` when the
+      The handshake method also performs :func:`match_hostname` when the
       :attr:`~SSLContext.check_hostname` attribute of the socket's
       :attr:`~SSLSocket.context` is true.
 
@@ -1111,7 +1111,7 @@
    returned.  Other return values will result in a TLS fatal error with
    :const:`ALERT_DESCRIPTION_INTERNAL_ERROR`.
 
-   If there is a IDNA decoding error on the server name, the TLS connection
+   If there is an IDNA decoding error on the server name, the TLS connection
    will terminate with an :const:`ALERT_DESCRIPTION_INTERNAL_ERROR` fatal TLS
    alert message to the client.
 

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


More information about the Python-checkins mailing list