https://github.com/python/cpython/commit/23fd846feba59977633e19dcca8a520dc4b01383 commit: 23fd846feba59977633e19dcca8a520dc4b01383 branch: 3.7 author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com> committer: Andrew Svetlov <andrew.svetlov at gmail.com> date: 2018年10月05日T10:33:36+03:00 summary: Fix a typo ssl.py docstring (GH-9697) (GH-9709) (cherry picked from commit fc7d1b3b6a2be7061c000245bb1faa438e42f5d8) Co-authored-by: Matt Eaton <agnosticdev at gmail.com> files: M Lib/ssl.py diff --git a/Lib/ssl.py b/Lib/ssl.py index 2f21937b8ec2..38aa38907e15 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):