summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-02 22:12:22 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-02 22:12:22 (GMT)
commite1bc8982161fa16e4263ad0f91e32bed8e02d9d8 (patch)
tree9e6b6e9a4b9f10710835d55f0ee1291a55392aa4
parentb205d58d0db38581d60d3de99ce27ab88a773c9b (diff)
downloadcpython-e1bc8982161fa16e4263ad0f91e32bed8e02d9d8.zip
cpython-e1bc8982161fa16e4263ad0f91e32bed8e02d9d8.tar.gz
cpython-e1bc8982161fa16e4263ad0f91e32bed8e02d9d8.tar.bz2
Some nits.
-rw-r--r--Doc/library/socket.rst15
-rw-r--r--Doc/library/ssl.rst6
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>