diff options
author | Matt Eaton <agnosticdev@gmail.com> | 2018-10-05 02:00:45 -0500 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2018-10-05 10:00:45 +0300 |
commit | fc7d1b3b6a2be7061c000245bb1faa438e42f5d8 (patch) | |
tree | 4f096338dbff8e58df251706e723a3cba558c0c8 /Lib | |
parent | 6f85b826b527e240551613aeec3118a5469e3a33 (diff) | |
download | cpython-git-fc7d1b3b6a2be7061c000245bb1faa438e42f5d8.tar.gz |
Fix a typo ssl.py docstring (GH-9697)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ssl.py b/Lib/ssl.py index c7b4932505..8f6d402209 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): |