]> granicus.if.org Git - python/commitdiff
Fix typo
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 10 May 2010 23:13:41 +0000 (23:13 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 10 May 2010 23:13:41 +0000 (23:13 +0000)
Doc/library/socket.rst

index 2de867d4daa3aa8429667e970f34bd1f6b3218be..3abd8cd8a979e2be984e89e784b08234ba505ed3 100644 (file)
@@ -722,7 +722,7 @@ correspond to Unix system calls applicable to sockets.
 
    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)``;