Skip to content

bpo-42560: tweaks to intro of Tkinter docs- add macOS, drop ActiveState #27835

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Doc/library/tkinter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
platforms, including macOS, as well as on Windows systems.
platforms (including macOS) as well as on Windows systems.

IMO, this flows better with the following "as well as ..."

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Disagree, as you need the comma before "as well as" for the external flow anyway, as you can see on the red part of the diff.


Running ``python -m tkinter`` from the command line should open a window
demonstrating a simple Tk interface, letting you know that :mod:`tkinter` is
Expand Down