[Python-checkins] Doc: add missing manpage and title references in tkinter docs (GH-29008)

miss-islington webhook-mailer at python.org
Fri May 20 05:21:54 EDT 2022


https://github.com/python/cpython/commit/4d363d8989bf79f091bf674701e6066908af788d
commit: 4d363d8989bf79f091bf674701e6066908af788d
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-05-20T02:21:29-07:00
summary:

Doc: add missing manpage and title references in tkinter docs (GH-29008)


- add bind(3tk) manpage markup
- add Tcl/Tk book reference markup
(cherry picked from commit 0e12781ad9dec6e46ccb85969c0eb7be1ecad81d)

Co-authored-by: Rafael Fontenelle <rffontenelle at users.noreply.github.com>

files:
M Doc/library/tkinter.rst

diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst
index 37b6a02a31710..096a343bd9558 100644
--- a/Doc/library/tkinter.rst
+++ b/Doc/library/tkinter.rst
@@ -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.



More information about the Python-checkins mailing list