Skip to content
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

bpo-33479: Tkinter docs #7287

Closed
wants to merge 32 commits into from
Closed
Changes from 5 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
79b195a
* Reduce the index page to a summary like the other ones
native-api May 19, 2018
6338ba1
* move seealso to the bottom
native-api May 19, 2018
02f712e
more 0. intro
native-api May 19, 2018
e68e136
https://bugs.python.org/issue33479#msg316492 1. Architecture.
native-api May 19, 2018
1de7f35
1. Architecture -- Tkinter modules
native-api May 20, 2018
6a7f4e8
2. Threading model
native-api May 22, 2018
c8f3bca
start documenting contents
native-api May 24, 2018
6cdcb9e
* queue is per-thread
native-api May 25, 2018
35521e8
update Tcl/Tk resource URLs and verbiage
roseman May 30, 2018
77c674b
small rewording/reorganization of architecture and modules sections
roseman May 30, 2018
61c23d2
rewrite threading model section to separate normal use from potential…
roseman May 30, 2018
5a80739
https://github.com/python/cpython/pull/7287#discussion_r192545213
native-api Jun 3, 2018
77b711e
https://github.com/python/cpython/pull/7287#discussion_r192545445
native-api Jun 3, 2018
9a5b0e8
Merge pull request #1 from native-api/roseman_1
roseman Jun 3, 2018
8bf32fd
Merge pull request #2 from native-api/roseman_2
roseman Jun 3, 2018
c11080d
https://github.com/python/cpython/pull/7287#discussion_r192545697
native-api Jun 3, 2018
d270dab
mention Tix as it adds more complexity to the architecture
native-api Jun 3, 2018
0bd73e2
spec
native-api Jun 3, 2018
e8d124a
https://github.com/python/cpython/pull/7287#discussion_r192545744
native-api Jun 3, 2018
0961c38
https://github.com/python/cpython/pull/7287#discussion_r192545829
native-api Jun 3, 2018
f91ff5d
more specific
native-api Jun 3, 2018
4b9152e
https://github.com/python/cpython/pull/7287#discussion_r192545899
native-api Jun 3, 2018
7281922
https://github.com/python/cpython/pull/7287#discussion_r192545996
native-api Jun 3, 2018
7fdbef3
https://github.com/python/cpython/pull/7287#discussion_r192546347
native-api Jun 3, 2018
4f5218c
plural releases
roseman Jun 3, 2018
b53bab2
Merge pull request #3 from native-api/roseman_3
roseman Jun 3, 2018
89364bb
Merge pull request #4 from native-api/roseman_4
roseman Jun 3, 2018
fbf276f
Merge pull request #5 from native-api/roseman_5
roseman Jun 3, 2018
37ef774
Merge pull request #6 from native-api/roseman_6
roseman Jun 3, 2018
7551744
Merge pull request #7 from native-api/roseman_7
roseman Jun 3, 2018
71a934d
put back 'older' for tix
roseman Jun 3, 2018
eb6623d
Merge pull request #9 from native-api/roseman_9
roseman Jun 3, 2018
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: 4 additions & 1 deletion Doc/library/tkinter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ details that are unchanged.
Architecture
------------

Tkinter provides a unified interface to several separate and distinct libraries.
Tcl/Tk is not a single library but rather consists of a few distinct
modules, each with a separate functionality and its own official
documentation. Python's binary releases also ship an add-on module
together with it.

Tcl
Like Python, Tcl is a dynamic interpreted programming language. It is most
Expand Down