summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-12-13 23:34:42 (GMT)
committerFred Drake <fdrake@acm.org>1999-12-13 23:34:42 (GMT)
commitd16b5abc073fd6f9bce1e40862fd851db6faf3e4 (patch)
treeb1d892445a22ef067981a15ee9d9d9d13b80b649 /Doc
parent5f7a28cdf85ca3018ac2e163eed3a38b46569dcd (diff)
downloadcpython-d16b5abc073fd6f9bce1e40862fd851db6faf3e4.zip
cpython-d16b5abc073fd6f9bce1e40862fd851db6faf3e4.tar.gz
cpython-d16b5abc073fd6f9bce1e40862fd851db6faf3e4.tar.bz2
Markup consistency nits that Guido didn't check. ;-)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libimaplib.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/lib/libimaplib.tex b/Doc/lib/libimaplib.tex
index d20a53e..80bd01e 100644
--- a/Doc/lib/libimaplib.tex
+++ b/Doc/lib/libimaplib.tex
@@ -91,11 +91,11 @@ All IMAP4rev1 commands are represented by methods of the same name,
either upper-case or lower-case.
All arguments to commands are converted to strings, except for
-AUTHENTICATE, and the last argument to APPEND which is passed as
-an IMAP4 literal. If necessary (the string contains
-IMAP4 protocol-sensitive characters and isn't enclosed with either parentheses or
-double quotes) each string is quoted. However, the \var{password}
-argument to the LOGIN command is always quoted.
+\samp{AUTHENTICATE}, and the last argument to \samp{APPEND} which is
+passed as an IMAP4 literal. If necessary (the string contains IMAP4
+protocol-sensitive characters and isn't enclosed with either
+parentheses or double quotes) each string is quoted. However, the
+\var{password} argument to the \samp{LOGIN} command is always quoted.
Each command returns a tuple: \code{(\var{type}, [\var{data},
...])} where \var{type} is usually \code{'OK'} or \code{'NO'},
@@ -172,7 +172,7 @@ An \class{IMAP4} instance has the following methods:
\end{methoddesc}
\begin{methoddesc}{noop}{}
- Send NOOP to server.
+ Send \samp{NOOP} to server.
\end{methoddesc}
\begin{methoddesc}{open}{host, port}