[Python-checkins] r81070 - python/trunk/Doc/library/socket.rst

andrew.kuchling python-checkins at python.org
Tue May 11 01:13:41 CEST 2010


Author: andrew.kuchling
Date: Tue May 11 01:13:41 2010
New Revision: 81070

Log:
Fix typo

Modified:
   python/trunk/Doc/library/socket.rst

Modified: python/trunk/Doc/library/socket.rst
==============================================================================
--- python/trunk/Doc/library/socket.rst	(original)
+++ python/trunk/Doc/library/socket.rst	Tue May 11 01:13:41 2010
@@ -722,7 +722,7 @@
 
    Set a timeout on blocking socket operations.  The *value* argument can be a
    nonnegative float expressing seconds, or ``None``. If a float is given,
-   subsequent socket operations will raise an :exc:`timeout` exception if the
+   subsequent socket operations will raise a :exc:`timeout` exception if the
    timeout period *value* has elapsed before the operation has completed.  Setting
    a timeout of ``None`` disables timeouts on socket operations.
    ``s.settimeout(0.0)`` is equivalent to ``s.setblocking(0)``;


More information about the Python-checkins mailing list