diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-06 20:23:02 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-06 20:23:02 (GMT) |
commit | ab1df4fe88bc208cc917e5d6dede0ab8f758a342 (patch) | |
tree | cc130d6a687c4d5ccbcd856a37b8c05b3cca9442 /Doc/lib/libtelnetlib.tex | |
parent | 40fb452be954ca7c1ac66ea8374027f50c09e961 (diff) | |
download | cpython-ab1df4fe88bc208cc917e5d6dede0ab8f758a342.zip cpython-ab1df4fe88bc208cc917e5d6dede0ab8f758a342.tar.gz cpython-ab1df4fe88bc208cc917e5d6dede0ab8f758a342.tar.bz2 |
Fix up a few style nits -- avoid "e.g." and "i.e." -- these make
translation more difficult, as well as reading the English more
difficult for non-native speakers.
Add an index entry for the Telnet protocol.
Always refer to the protocol as Telnet instead of telnet.
Diffstat (limited to 'Doc/lib/libtelnetlib.tex')
-rw-r--r-- | Doc/lib/libtelnetlib.tex | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Doc/lib/libtelnetlib.tex b/Doc/lib/libtelnetlib.tex index 50d0c53..c772839 100644 --- a/Doc/lib/libtelnetlib.tex +++ b/Doc/lib/libtelnetlib.tex @@ -5,13 +5,15 @@ \modulesynopsis{Telnet client class.} \sectionauthor{Skip Montanaro}{skip@mojam.com} +\index{protocol!Telnet} + The \module{telnetlib} module provides a \class{Telnet} class that implements the Telnet protocol. See \rfc{854} for details about the protocol. \begin{classdesc}{Telnet}{\optional{host\optional{, port}}} -\class{Telnet} represents a connection to a telnet server. The +\class{Telnet} represents a connection to a Telnet server. The instance is initially not connected by default; the \method{open()} method must be used to establish a connection. Alternatively, the host name and optional port number can be passed to the constructor, @@ -92,7 +94,7 @@ never blocks. \begin{methoddesc}{open}{host\optional{, port}} Connect to a host. The optional second argument is the port number, which -defaults to the standard telnet port (23). +defaults to the standard Telnet port (23). Do not try to reopen an already connected instance. \end{methoddesc} @@ -127,7 +129,7 @@ This can block if the connection is blocked. May raise \end{methoddesc} \begin{methoddesc}{interact}{} -Interaction function, emulates a very dumb telnet client. +Interaction function, emulates a very dumb Telnet client. \end{methoddesc} \begin{methoddesc}{mt_interact}{} @@ -151,7 +153,7 @@ If end of file is found and no text was read, raise \code{(-1, None, \var{text})} where \var{text} is the text received so far (may be the empty string if a timeout happened). -If a regular expression ends with a greedy match (e.g. \regexp{.*}) +If a regular expression ends with a greedy match (such as \regexp{.*}) or if more than one expression can match the same input, the results are indeterministic, and may depend on the I/O timing. \end{methoddesc} |