summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-05-20 09:21:29 (GMT)
committerGitHub <noreply@github.com>2022-05-20 09:21:29 (GMT)
commit4d363d8989bf79f091bf674701e6066908af788d (patch)
tree86c155398bee295655421bfa4e8e29ca60a734bc
parent49526080eb448b750396caf90081ff846e36a36d (diff)
downloadcpython-4d363d8989bf79f091bf674701e6066908af788d.zip
cpython-4d363d8989bf79f091bf674701e6066908af788d.tar.gz
cpython-4d363d8989bf79f091bf674701e6066908af788d.tar.bz2
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@users.noreply.github.com>
-rw-r--r--Doc/library/tkinter.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst
index 37b6a02..096a343 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.