diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-22 18:54:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 18:54:46 (GMT) |
commit | 61ecd3e593e05c3d84adf5640458a01f8550aa74 (patch) | |
tree | 33276bb5a8dc77ee0428e372e65edd1239f53953 /Doc | |
parent | 9ffe582a018a2babd14e874ae2b169370633fe33 (diff) | |
download | cpython-61ecd3e593e05c3d84adf5640458a01f8550aa74.zip cpython-61ecd3e593e05c3d84adf5640458a01f8550aa74.tar.gz cpython-61ecd3e593e05c3d84adf5640458a01f8550aa74.tar.bz2 |
bpo-42560: tweaks to intro of Tkinter docs- add macOS, drop ActiveState (GH-27835)
(cherry picked from commit 141c7a4fce8def67baa9d24f542c105b8502893e)
Co-authored-by: Mark Roseman <mark@markroseman.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tkinter.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 7483ccd..5d0bf79 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -11,9 +11,8 @@ -------------- The :mod:`tkinter` package ("Tk interface") is the standard Python interface to -the Tk GUI toolkit. Both Tk and :mod:`tkinter` are available on most Unix -platforms, as well as on Windows systems. (Tk itself is not part of Python; it -is maintained at ActiveState.) +the Tcl/Tk GUI toolkit. Both Tk and :mod:`tkinter` are available on most Unix +platforms, including macOS, as well as on Windows systems. Running ``python -m tkinter`` from the command line should open a window demonstrating a simple Tk interface, letting you know that :mod:`tkinter` is |