https://github.com/python/cpython/commit/b8f29b1293f55e12e86a2a039b49b6f9f73851b7
commit: b8f29b1293f55e12e86a2a039b49b6f9f73851b7
branch: main
author: Christopher Chavez <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2024-01-18T17:46:58+02:00
summary:

gh-110345: show Tcl/Tk patchlevel in `tkinter._test()` (GH-110350)

files:
A Misc/NEWS.d/next/Library/2023-10-04-11-09-30.gh-issue-110345.fZU1ud.rst
M Lib/tkinter/__init__.py

diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py
index 2590acdc87e695..e0db41dd915ece 100644
--- a/Lib/tkinter/__init__.py
+++ b/Lib/tkinter/__init__.py
@@ -4715,7 +4715,7 @@ def panes(self):
 
 def _test():
     root = Tk()
-    text = "This is Tcl/Tk version %s" % TclVersion
+    text = "This is Tcl/Tk %s" % root.globalgetvar('tk_patchLevel')
     text += "\nThis should be a cedilla: \xe7"
     label = Label(root, text=text)
     label.pack()
diff --git 
a/Misc/NEWS.d/next/Library/2023-10-04-11-09-30.gh-issue-110345.fZU1ud.rst 
b/Misc/NEWS.d/next/Library/2023-10-04-11-09-30.gh-issue-110345.fZU1ud.rst
new file mode 100644
index 00000000000000..d9ccc0f12de47c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-10-04-11-09-30.gh-issue-110345.fZU1ud.rst
@@ -0,0 +1 @@
+Show the Tcl/Tk patchlevel (rather than version) in :meth:`tkinter._test`.

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to