summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-05-10 23:13:41 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-05-10 23:13:41 (GMT)
commit5d864c847e46a3bea7647e3878e3af6959fb20a5 (patch)
tree175961d5e2503a01b37edb8e9fcd35e417c08d94 /Doc/library
parent6487952a46473f71816e6b13ca1bb5f1642a2a18 (diff)
downloadcpython-5d864c847e46a3bea7647e3878e3af6959fb20a5.zip
cpython-5d864c847e46a3bea7647e3878e3af6959fb20a5.tar.gz
cpython-5d864c847e46a3bea7647e3878e3af6959fb20a5.tar.bz2
Fix typo
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/socket.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
index 2de867d..3abd8cd 100644
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -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)``;