diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-25 08:00:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 08:00:21 (GMT) |
commit | 44eb329490aece97a0e0d8f6b904aba10e9354ad (patch) | |
tree | 211094da202bd7691872cd13dd7d9bba01abae5f /Doc | |
parent | 4b9d50bb6049bfa120fb8cc567973976651de4f1 (diff) | |
download | cpython-44eb329490aece97a0e0d8f6b904aba10e9354ad.zip cpython-44eb329490aece97a0e0d8f6b904aba10e9354ad.tar.gz cpython-44eb329490aece97a0e0d8f6b904aba10e9354ad.tar.bz2 |
[3.12] gh-101100: Define `_tkinter` module to fix references (GH-112382) (#112392)
gh-101100: Define `_tkinter` module to fix references (GH-112382)
Define _tkinter module to fix references
(cherry picked from commit 6b961b8ceaba372b78d03feaceb4837bf7236694)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tkinter.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index ee34f26..aa78a0f 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -232,6 +232,9 @@ The modules that provide Tk support include: Additional modules: +.. module:: _tkinter + :synopsis: A binary module that contains the low-level interface to Tcl/Tk. + :mod:`_tkinter` A binary module that contains the low-level interface to Tcl/Tk. It is automatically imported by the main :mod:`tkinter` module, |