diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-03-17 11:05:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 11:05:52 (GMT) |
commit | c2e3c06139e9468efb32629d147d99a1672d9e19 (patch) | |
tree | 39d3a7a04231ee4c4f34bf1eab01afdd83a1b2e4 /Doc | |
parent | 7aeb06f78ee4abba64ca2c5c7a848fd2616da6fb (diff) | |
download | cpython-c2e3c06139e9468efb32629d147d99a1672d9e19.zip cpython-c2e3c06139e9468efb32629d147d99a1672d9e19.tar.gz cpython-c2e3c06139e9468efb32629d147d99a1672d9e19.tar.bz2 |
bpo-46996: Remove support of Tcl/Tk < 8.5.12 (GH-31839)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tkinter.ttk.rst | 4 | ||||
-rw-r--r-- | Doc/whatsnew/3.11.rst | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/tkinter.ttk.rst b/Doc/library/tkinter.ttk.rst index 2db4c0f..d50ea99 100644 --- a/Doc/library/tkinter.ttk.rst +++ b/Doc/library/tkinter.ttk.rst @@ -13,9 +13,7 @@ -------------- The :mod:`tkinter.ttk` module provides access to the Tk themed widget set, -introduced in Tk 8.5. If Python has not been compiled against Tk 8.5, this -module can still be accessed if *Tile* has been installed. The former -method using Tk 8.5 provides additional benefits including anti-aliased font +introduced in Tk 8.5. It provides additional benefits including anti-aliased font rendering under X11 and window transparency (requiring a composition window manager on X11). diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 9fbf467..3914234 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -712,6 +712,9 @@ Build Changes be removed at some point in the future. (Contributed by Mark Dickinson in :issue:`45569`.) +* The :mod:`tkinter` package now requires Tcl/Tk version 8.5.12 or newer. + (Contributed by Serhiy Storchaka in :issue:`46996`.) + C API Changes ============= |