[Python-checkins] Fix a typo ssl.py docstring (GH-9697)

Andrew Svetlov webhook-mailer at python.org
Fri Oct 5 03:00:53 EDT 2018


https://github.com/python/cpython/commit/fc7d1b3b6a2be7061c000245bb1faa438e42f5d8
commit: fc7d1b3b6a2be7061c000245bb1faa438e42f5d8
branch: master
author: Matt Eaton <agnosticdev at gmail.com>
committer: Andrew Svetlov <andrew.svetlov at gmail.com>
date: 2018-10-05T10:00:45+03:00
summary:

Fix a typo ssl.py docstring (GH-9697)

files:
M Lib/ssl.py

diff --git a/Lib/ssl.py b/Lib/ssl.py
index c7b493250558..8f6d402209b1 100644
--- a/Lib/ssl.py
+++ b/Lib/ssl.py
@@ -640,7 +640,7 @@ class SSLObject:
 
     When compared to ``SSLSocket``, this object lacks the following features:
 
-     * Any form of network IO incluging methods such as ``recv`` and ``send``.
+     * Any form of network IO, including methods such as ``recv`` and ``send``.
      * The ``do_handshake_on_connect`` and ``suppress_ragged_eofs`` machinery.
     """
     def __init__(self, *args, **kwargs):



More information about the Python-checkins mailing list