https://github.com/python/cpython/commit/ff0aa91bc7250269560693d6703dcc3b71bc5b89
commit: ff0aa91bc7250269560693d6703dcc3b71bc5b89
branch: 3.14
author: Ned Deily <[email protected]>
committer: ned-deily <[email protected]>
date: 2026-05-05T18:24:38-04:00
summary:

[3.14] gh-145736: Fix test_tkinter test_configure_values test case backport 
miss for Tk 9. (#149435)

files:
A Misc/NEWS.d/next/Tests/2026-05-05-17-08-36.gh-issue-145736.JYdLx4.rst
M Lib/test/test_tkinter/test_widgets.py

diff --git a/Lib/test/test_tkinter/test_widgets.py 
b/Lib/test/test_tkinter/test_widgets.py
index fe28ebd24a4922..1c400e970eb02d 100644
--- a/Lib/test/test_tkinter/test_widgets.py
+++ b/Lib/test/test_tkinter/test_widgets.py
@@ -576,7 +576,8 @@ def test_configure_values(self):
         else:
             expected = (42, 3.14, '', 'any string')
         self.checkParam(widget, 'values', (42, 3.14, '', 'any string'),
-                        expected='42 3.14 {} {any string}')
+                        expected=expected)
+
         self.checkParam(widget, 'values', '')
 
     def test_configure_wrap(self):
diff --git 
a/Misc/NEWS.d/next/Tests/2026-05-05-17-08-36.gh-issue-145736.JYdLx4.rst 
b/Misc/NEWS.d/next/Tests/2026-05-05-17-08-36.gh-issue-145736.JYdLx4.rst
new file mode 100644
index 00000000000000..9f3e890a4476bc
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2026-05-05-17-08-36.gh-issue-145736.JYdLx4.rst
@@ -0,0 +1 @@
+Fix test_tkinter test_configure_values test case backport miss for Tk 9.

_______________________________________________
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