diff options
author | Raymond Hettinger <python@rcn.com> | 2003-07-20 01:10:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-07-20 01:10:15 (GMT) |
commit | 476fcae4d70f78ce79b4f1b6c59c62673d0b7c1d (patch) | |
tree | 99db3bd42d83e08316f4e7cb71f1d1b77aa565bf /Doc | |
parent | 6601b13933bc9cf153750738760ec9767c974179 (diff) | |
download | cpython-476fcae4d70f78ce79b4f1b6c59c62673d0b7c1d.zip cpython-476fcae4d70f78ce79b4f1b6c59c62673d0b7c1d.tar.gz cpython-476fcae4d70f78ce79b4f1b6c59c62673d0b7c1d.tar.bz2 |
SF bug #774411: Typo in socket documentation
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsocket.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex index 5c6599c..199b97f 100644 --- a/Doc/lib/libsocket.tex +++ b/Doc/lib/libsocket.tex @@ -604,7 +604,7 @@ the last call to \method{setblocking()} or \method{settimeout()}. \end{methoddesc} Some notes on socket blocking and timeouts: A socket object can be in -one of three modes: blocking, non-blocking, or timout. Sockets are +one of three modes: blocking, non-blocking, or timeout. Sockets are always created in blocking mode. In blocking mode, operations block until complete. In non-blocking mode, operations fail (with an error that is unfortunately system-dependent) if they cannot be completed |