diff options
-rw-r--r-- | Doc/library/socket.rst | 15 | ||||
-rw-r--r-- | Doc/library/ssl.rst | 6 |
2 files changed, 12 insertions, 9 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index c5f2b7c..b2e7968 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -25,6 +25,15 @@ files, buffer allocation on receive operations is automatic, and buffer length is implicit on send operations. +.. seealso:: + + Module :mod:`socketserver` + Classes that simplify writing network servers. + + Module :mod:`ssl` + A TLS/SSL wrapper for socket objects. + + Socket families --------------- @@ -517,12 +526,6 @@ The module :mod:`socket` exports the following constants and functions: same as ``type(socket(...))``. -.. seealso:: - - Module :mod:`socketserver` - Classes that simplify writing network servers. - - .. _socket-objects: Socket Objects diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index aaa3871..107b31d 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1,8 +1,8 @@ -:mod:`ssl` --- SSL wrapper for socket objects -============================================= +:mod:`ssl` --- TLS/SSL wrapper for socket objects +================================================= .. module:: ssl - :synopsis: SSL wrapper for socket objects + :synopsis: TLS/SSL wrapper for socket objects .. moduleauthor:: Bill Janssen <bill.janssen@gmail.com> .. sectionauthor:: Bill Janssen <bill.janssen@gmail.com> |