diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-06-11 20:02:25 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-06-11 20:02:25 (GMT) |
commit | ba9fb0d83f1d6644bcabde250dbf663078945d92 (patch) | |
tree | 036a6080bc940c6e7a6b6bddcfc61e7bfdfdad3d | |
parent | 012a83ab261f7b0357e9c29c9022315ab9c7d970 (diff) | |
download | cpython-ba9fb0d83f1d6644bcabde250dbf663078945d92.zip cpython-ba9fb0d83f1d6644bcabde250dbf663078945d92.tar.gz cpython-ba9fb0d83f1d6644bcabde250dbf663078945d92.tar.bz2 |
Fix doc build warning
-rw-r--r-- | Doc/library/ssl.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 6eb47e3..75b5d28 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -791,7 +791,9 @@ SSL sockets provide the following methods of :ref:`socket-objects`: the same limitation) - :meth:`~socket.socket.sendfile()` (but :mod:`os.sendfile` will be used for plain-text sockets only, else :meth:`~socket.socket.send()` will be used) - .. versionadded:: 3.5 + + .. versionadded:: 3.5 + - :meth:`~socket.socket.shutdown()` However, since the SSL (and TLS) protocol has its own framing atop |