-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
bpo-33280: Update link to Tcl/Tk 8.6 man pages #6473
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
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7f7faa6
Link to Tcl/Tk 8.5 -> 8.6
andresdelfino 15e8084
Update manuals link and reorganize external references
andresdelfino e030ea5
Add version comment about -m tkinter
andresdelfino 8e553a0
Move links to correct section
andresdelfino 5431340
Undo unintentional sorting change
andresdelfino f588afd
Add link to Tk commands at the top of the list
andresdelfino b0e0abd
Move Tk commands link, and update comment
andresdelfino File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,17 @@ | |
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.) You can check that :mod:`tkinter` is properly | ||
installed on your system by running ``python -m tkinter`` from the command line; | ||
this should open a window demonstrating a simple Tk interface. | ||
is maintained at ActiveState.) | ||
|
||
Running ``python -m tkinter`` from the command line should open a window | ||
demonstrating a simple Tk interface, letting you know that :mod:`tkinter` is | ||
properly installed on your system, and also showing what version of Tcl/Tk is | ||
installed, so you can read the Tcl/Tk documentation specific to that version. | ||
|
||
.. seealso:: | ||
|
||
Tkinter documentation: | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like the separate paragraph for testing, and the separation of tkinter versus tk docs. Some of the descriptions could be updated, but lets make that a separate issue. |
||
`Python Tkinter Resources <https://wiki.python.org/moin/TkInter>`_ | ||
The Python Tkinter Topic Guide provides a great deal of information on using Tk | ||
from Python and links to other sources of information on Tk. | ||
|
@@ -32,17 +37,32 @@ this should open a window demonstrating a simple Tk interface. | |
`Tkinter docs from effbot <http://effbot.org/tkinterbook/>`_ | ||
Online reference for tkinter supported by effbot.org. | ||
|
||
`Tcl/Tk manual <https://www.tcl.tk/man/tcl8.5/>`_ | ||
Official manual for the latest tcl/tk version. | ||
|
||
`Programming Python <http://learning-python.com/about-pp4e.html>`_ | ||
Book by Mark Lutz, has excellent coverage of Tkinter. | ||
|
||
`Modern Tkinter for Busy Python Developers <https://www.amazon.com/Modern-Tkinter-Python-Developers-ebook/dp/B0071QDNLO/>`_ | ||
Book by Mark Rozerman about building attractive and modern graphical user interfaces with Python and Tkinter. | ||
|
||
`Python and Tkinter Programming <https://www.manning.com/books/python-and-tkinter-programming>`_ | ||
The book by John Grayson (ISBN 1-884777-81-3). | ||
Book by John Grayson (ISBN 1-884777-81-3). | ||
|
||
Tcl/Tk documentation: | ||
|
||
`Tk commands <https://www.tcl.tk/man/tcl8.6/TkCmd/contents.htm>`_ | ||
Most commands are available as :mod:`tkinter` or :mod:`tkinter.ttk` classes. | ||
Change '8.6' to match the version of your Tcl/Tk installation. | ||
|
||
`Tcl/Tk recent man pages <https://www.tcl.tk/doc/>`_ | ||
Recent Tcl/Tk manuals on www.tcl.tk. | ||
|
||
`ActiveState Tcl Home Page <http://tcl.activestate.com/>`_ | ||
The Tk/Tcl development is largely taking place at ActiveState. | ||
|
||
`Tcl and the Tk Toolkit <https://www.amazon.com/exec/obidos/ASIN/020163337X>`_ | ||
Book by John Ousterhout, the inventor of Tcl. | ||
|
||
`Practical Programming in Tcl and Tk <http://www.beedub.com/book/>`_ | ||
Brent Welch's encyclopedic book. | ||
|
||
|
||
Tkinter Modules | ||
|
@@ -175,21 +195,6 @@ documentation that exists. Here are some hints: | |
place to go when nothing else makes sense. | ||
|
||
|
||
.. seealso:: | ||
|
||
`Tcl/Tk 8.6 man pages <https://www.tcl.tk/man/tcl8.6/>`_ | ||
The Tcl/Tk manual on www.tcl.tk. | ||
|
||
`ActiveState Tcl Home Page <http://tcl.activestate.com/>`_ | ||
The Tk/Tcl development is largely taking place at ActiveState. | ||
|
||
`Tcl and the Tk Toolkit <https://www.amazon.com/exec/obidos/ASIN/020163337X>`_ | ||
The book by John Ousterhout, the inventor of Tcl. | ||
|
||
`Practical Programming in Tcl and Tk <http://www.beedub.com/book/>`_ | ||
Brent Welch's encyclopedic book. | ||
|
||
|
||
A Simple Hello World Program | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Separate paragraph is improvement.