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