diff options
author | Nathan M <nathanmaynes@gmail.com> | 2020-08-03 02:13:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 02:13:03 (GMT) |
commit | ecaf949cc487887883c14dff7a96e09ac9404994 (patch) | |
tree | d55ec80f82092600f5d9c6becd6b94aca46b7884 /Doc | |
parent | ab72fdeb82c3ab045b480cd4bb4f928c12653ecb (diff) | |
download | cpython-ecaf949cc487887883c14dff7a96e09ac9404994.zip cpython-ecaf949cc487887883c14dff7a96e09ac9404994.tar.gz cpython-ecaf949cc487887883c14dff7a96e09ac9404994.tar.bz2 |
bpo-41424: Remove extra words in Tkinter-Packer documentation (GH-21707)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tkinter.rst | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 2dc44ad..3d90b4b 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -464,12 +464,11 @@ The Packer .. index:: single: packing (widgets) The packer is one of Tk's geometry-management mechanisms. Geometry managers -are used to specify the relative positioning of the positioning of widgets -within their container - their mutual *master*. In contrast to the more -cumbersome *placer* (which is used less commonly, and we do not cover here), the -packer takes qualitative relationship specification - *above*, *to the left of*, -*filling*, etc - and works everything out to determine the exact placement -coordinates for you. +are used to specify the relative positioning of widgets within their container - +their mutual *master*. In contrast to the more cumbersome *placer* (which is +used less commonly, and we do not cover here), the packer takes qualitative +relationship specification - *above*, *to the left of*, *filling*, etc - and +works everything out to determine the exact placement coordinates for you. The size of any *master* widget is determined by the size of the "slave widgets" inside. The packer is used to control where slave widgets appear inside the |