[Python-checkins] bpo-37823: Fix open() link in telnetlib doc (GH-15281)

Miss Islington (bot) webhook-mailer at python.org
Wed Aug 21 07:38:09 EDT 2019


https://github.com/python/cpython/commit/c777dec6f47ce649f3dea88d308e36e45538fdac
commit: c777dec6f47ce649f3dea88d308e36e45538fdac
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-08-21T04:38:04-07:00
summary:

bpo-37823: Fix open() link in telnetlib doc (GH-15281)


Fixed wrong link to Telnet.open() method in telnetlib documentation.
(cherry picked from commit e0b6117e2723327d6741d0aa599408514add5b30)

Co-authored-by: Michael Anckaert <michael.anckaert at sinax.be>

files:
M Doc/library/telnetlib.rst

diff --git a/Doc/library/telnetlib.rst b/Doc/library/telnetlib.rst
index 0262a9b08410..48a9aea50ddd 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



More information about the Python-checkins mailing list