From 645f9193dd812cb7f1bc78f6683918d18a1e714c Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Fri, 20 May 2022 05:19:37 -0300 Subject: [PATCH] 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 --- Doc/library/tkinter.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 37b6a02a31710e..096a343bd95589 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.