diff options
author | Mark Roseman <mark@markroseman.com> | 2021-08-23 19:00:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 19:00:47 (GMT) |
commit | 1eb451031a64b4f28d737ee7f394252ae9a76118 (patch) | |
tree | 9319e497b3f222129d2cbfdcd666e82f0ba26024 /Doc | |
parent | 27b761a11a14521617a01257eb3767150bec3a74 (diff) | |
download | cpython-1eb451031a64b4f28d737ee7f394252ae9a76118.zip cpython-1eb451031a64b4f28d737ee7f394252ae9a76118.tar.gz cpython-1eb451031a64b4f28d737ee7f394252ae9a76118.tar.bz2 |
bpo-42560: add warning to Tkinter docs about outdated pre-8.5 documentation online (GH-27836)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tkinter.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 425f030..c106cb8 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -29,6 +29,13 @@ make the experience more pythonic. This documentation will concentrate on these additions and changes, and refer to the official Tcl/Tk documentation for details that are unchanged. +.. note:: + + Tcl/Tk 8.5 (2007) introduced a modern set of themed user interface components + along with a new API to use them. Both old and new APIs are still available. + Most documentation you will find online still uses the old API and + can be woefully outdated. + .. seealso:: * `TkDocs <http://tkdocs.com/>`_ |