Skip to content

Commit

Permalink
bpo-37823: Fix open() link in telnetlib doc (pythonGH-15281)
Browse files Browse the repository at this point in the history
Fixed wrong link to Telnet.open() method in telnetlib documentation.
(cherry picked from commit e0b6117)

Co-authored-by: Michael Anckaert <michael.anckaert@sinax.be>
  • Loading branch information
MichaelAnckaert authored and miss-islington committed Aug 21, 2019
1 parent b9d88e7 commit 0aeec99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/telnetlib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Character), EL (Erase Line), GA (Go Ahead), SB (Subnegotiation Begin).
.. class:: Telnet(host=None, port=0[, timeout])

: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
initially not connected by default; the :meth:`~Telnet.open` method must be used to
establish a connection. Alternatively, the host name and optional port
number can be passed to the constructor too, in which case the connection to
the server will be established before the constructor returns. The optional
Expand Down

0 comments on commit 0aeec99

Please sign in to comment.