]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-33479: Remove unqualified tkinter threadsafe claim. (GH-6990)
authorTerry Jan Reedy <tjreedy@udel.edu>
Tue, 10 Aug 2021 09:32:21 +0000 (05:32 -0400)
committerGitHub <noreply@github.com>
Tue, 10 Aug 2021 09:32:21 +0000 (11:32 +0200)
It has not been true for several years and likely never was.

Doc/library/tk.rst
Misc/NEWS.d/next/Documentation/2018-05-19-15-59-29.bpo-33479.4cLlxo.rst [new file with mode: 0644]

index c6c73f057cab165bb4c190d14c003653d3584eb8..691c9df5e8f803ac3151fa75f24c4c9522285b9a 100644 (file)
@@ -19,8 +19,7 @@ The :mod:`tkinter` package is a thin object-oriented layer on top of Tcl/Tk. To
 use :mod:`tkinter`, you don't need to write Tcl code, but you will need to
 consult the Tk documentation, and occasionally the Tcl documentation.
 :mod:`tkinter` is a set of wrappers that implement the Tk widgets as Python
-classes.  In addition, the internal module :mod:`_tkinter` provides a threadsafe
-mechanism which allows Python and Tcl to interact.
+classes.
 
 :mod:`tkinter`'s chief virtues are that it is fast, and that it usually comes
 bundled with Python. Although its standard documentation is weak, good
diff --git a/Misc/NEWS.d/next/Documentation/2018-05-19-15-59-29.bpo-33479.4cLlxo.rst b/Misc/NEWS.d/next/Documentation/2018-05-19-15-59-29.bpo-33479.4cLlxo.rst
new file mode 100644 (file)
index 0000000..db4973d
--- /dev/null
@@ -0,0 +1,4 @@
+Remove the unqualified claim that tkinter is threadsafe. It has not been
+true for several years and likely never was. An explanation of what is true
+may be added later, after more discussion, and possibly after patching
+_tkinter.c,