diff options
Diffstat (limited to 'Doc/library/socket.rst')
-rw-r--r-- | Doc/library/socket.rst | 15 |
1 files changed, 9 insertions, 6 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 |