[Python-checkins] bpo-42560: add warning to Tkinter docs about outdated pre-8.5 documentation online (GH-27836)

miss-islington webhook-mailer at python.org
Mon Aug 23 15:22:33 EDT 2021


https://github.com/python/cpython/commit/8351df6e3652a41ffc720066a68b666bbef1df67
commit: 8351df6e3652a41ffc720066a68b666bbef1df67
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-08-23T12:22:29-07:00
summary:

bpo-42560: add warning to Tkinter docs about outdated pre-8.5 documentation online (GH-27836)


Co-authored-by: Łukasz Langa <lukasz at langa.pl>
Co-authored-by: E-Paine <63801254+E-Paine at users.noreply.github.com>
(cherry picked from commit 1eb451031a64b4f28d737ee7f394252ae9a76118)

Co-authored-by: Mark Roseman <mark at markroseman.com>

files:
M Doc/library/tkinter.rst

diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst
index 34238f4cdd0bb..321865357d0b5 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/>`_



More information about the Python-checkins mailing list