]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: add missing manpage and title references in tkinter docs (#29008)
authorRafael Fontenelle <rffontenelle@users.noreply.github.com>
Fri, 20 May 2022 08:19:37 +0000 (05:19 -0300)
committerGitHub <noreply@github.com>
Fri, 20 May 2022 08:19:37 +0000 (10:19 +0200)
- add bind(3tk) manpage markup
- add Tcl/Tk book reference markup

Doc/library/tkinter.rst

index 37b6a02a31710e593bbb6eeca4cb7e1c7f13cc04..096a343bd95589a7ef6e0e36b7833c7e6f79c706 100644 (file)
@@ -877,8 +877,9 @@ of the bind method is::
 where:
 
 sequence
-   is a string that denotes the target kind of event.  (See the bind man page and
-   page 201 of John Ousterhout's book for details).
+   is a string that denotes the target kind of event.  (See the
+   :manpage:`bind(3tk)` man page, and page 201 of John Ousterhout's book,
+   :title-reference:`Tcl and the Tk Toolkit (2nd edition)`, for details).
 
 func
    is a Python function, taking one argument, to be invoked when the event occurs.