diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/libmactcp.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/libmactcp.tex')
-rw-r--r-- | Doc/libmactcp.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/libmactcp.tex b/Doc/libmactcp.tex index f041280..122aa5b 100644 --- a/Doc/libmactcp.tex +++ b/Doc/libmactcp.tex @@ -78,13 +78,13 @@ Return the TCP address of this side of a connection as a 2-tuple \code{(host, port)}, both integers. \end{funcdesc} -\begin{funcdesc}{ActiveOpen}{lport\, host\, rport} +\begin{funcdesc}{ActiveOpen}{lport, host, rport} Open an outgoing connection to TCP address \code{(\var{host}, \var{rport})}. Use local port \var{lport} (zero makes the system pick a free port). This call blocks until the connection has been established. \end{funcdesc} -\begin{funcdesc}{Send}{buf\, push\, urgent} +\begin{funcdesc}{Send}{buf, push, urgent} Send data \var{buf} over the connection. \var{Push} and \var{urgent} are flags as specified by the TCP standard. \end{funcdesc} @@ -168,7 +168,7 @@ Read a datagram, waiting at most \var{timeout} seconds (-1 is infinite). Return the data. \end{funcdesc} -\begin{funcdesc}{Write}{host\, port\, buf} +\begin{funcdesc}{Write}{host, port, buf} Send \var{buf} as a datagram to IP-address \var{host}, port \var{port}. \end{funcdesc} |