From 3779234c992ad9423ddfb321aca411b359265322 Mon Sep 17 00:00:00 2001 From: Michael Anckaert Date: Wed, 14 Aug 2019 17:17:05 +0200 Subject: [PATCH] Fixed wrong link to Telnet.open() method in Telnetlib documentation --- Doc/library/telnetlib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/telnetlib.rst b/Doc/library/telnetlib.rst index 0262a9b084108b8..48a9aea50dddd1a 100644 --- a/Doc/library/telnetlib.rst +++ b/Doc/library/telnetlib.rst @@ -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