diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-01-10 19:34:52 (GMT) |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-01-10 19:34:52 (GMT) |
commit | 8321026ff40c73628833874405248550739bf312 (patch) | |
tree | b308f2bbe02c744f05748e0e92165f7b430a2263 /Doc/lib/libsocket.tex | |
parent | 62c11155eb13e950e10d660b8f5150e04efb3a5e (diff) | |
download | cpython-8321026ff40c73628833874405248550739bf312.zip cpython-8321026ff40c73628833874405248550739bf312.tar.gz cpython-8321026ff40c73628833874405248550739bf312.tar.bz2 |
SourceForge patch #103140, checked in at fdrake's invitation. Minor fixes and
additions to library docs.#
Diffstat (limited to 'Doc/lib/libsocket.tex')
-rw-r--r-- | Doc/lib/libsocket.tex | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex index b6024ef..6598bf0 100644 --- a/Doc/lib/libsocket.tex +++ b/Doc/lib/libsocket.tex @@ -267,8 +267,8 @@ Bind the socket to \var{address}. The socket must not already be bound. (The format of \var{address} depends on the address family --- see above.) \strong{Note:} This method has historically accepted a pair of parameters for \constant{AF_INET} addresses instead of only a -tuple. This was never intentional and will no longer be available in -Python 1.7. +tuple. This was never intentional and is no longer be available in +Python 2.0. \end{methoddesc} \begin{methoddesc}[socket]{close}{} @@ -282,8 +282,8 @@ Connect to a remote socket at \var{address}. (The format of \var{address} depends on the address family --- see above.) \strong{Note:} This method has historically accepted a pair of parameters for \constant{AF_INET} addresses instead of only a -tuple. This was never intentional and will no longer be available in -Python 1.7. +tuple. This was never intentional and is no longer available in +Python 2.0 and later. \end{methoddesc} \begin{methoddesc}[socket]{connect_ex}{address} @@ -295,8 +295,8 @@ operation succeeded, otherwise the value of the \cdata{errno} variable. This is useful, e.g., for asynchronous connects. \strong{Note:} This method has historically accepted a pair of parameters for \constant{AF_INET} addresses instead of only a tuple. -This was never intentional and will no longer be available in Python -1.7. +This was never intentional and is no longer be available in Python +2.0 and later. \end{methoddesc} \begin{methoddesc}[socket]{fileno}{} |