diff options
author | Georg Brandl <georg@python.org> | 2010-05-21 21:30:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-21 21:30:47 (GMT) |
commit | dd59f1bf92958c698cc4223e9762e5d46a498c38 (patch) | |
tree | c11ca2b36b4f090aa79f03966c57e1ddf81629d3 /Doc/library/telnetlib.rst | |
parent | bd289dae35d331b5461ba6a93ad92e85ff306e0b (diff) | |
download | cpython-dd59f1bf92958c698cc4223e9762e5d46a498c38.zip cpython-dd59f1bf92958c698cc4223e9762e5d46a498c38.tar.gz cpython-dd59f1bf92958c698cc4223e9762e5d46a498c38.tar.bz2 |
#8707: remove duplicate paragraph part.
Diffstat (limited to 'Doc/library/telnetlib.rst')
-rw-r--r-- | Doc/library/telnetlib.rst | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Doc/library/telnetlib.rst b/Doc/library/telnetlib.rst index b326da9..b1528bd 100644 --- a/Doc/library/telnetlib.rst +++ b/Doc/library/telnetlib.rst @@ -28,16 +28,11 @@ Character), EL (Erase Line), GA (Go Ahead), SB (Subnegotiation Begin). :class:`Telnet` represents a connection to a Telnet server. The instance is initially not connected by default; the :meth:`open` method must be used to establish a connection. Alternatively, the host name and optional port - and timeout can be passed to the constructor, in which case the connection to - the server will be established before the constructor returns. The optional - *timeout* parameter specifies a timeout in seconds for the connection attempt (if - not specified, the global default timeout setting will be used). - number can be passed to the constructor, to, in which case the connection to - the server will be established before the constructor returns. The optional + the server will be established before the constructor returns. The optional *timeout* parameter specifies a timeout in seconds for blocking operations - like the connection attempt (if not specified, or passed as None, the global - default timeout setting will be used). + like the connection attempt (if not specified, the global default timeout + setting will be used). Do not reopen an already connected instance. |