mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Issue #19020: Tkinter now uses splitlist() instead of split() in configure
methods.
This commit is contained in:
parent
0fd557647d
commit
848972cac1
4 changed files with 34 additions and 54 deletions
|
@ -62,9 +62,7 @@ class AbstractWidgetTest:
|
|||
if not isinstance(widget, Scale):
|
||||
t = widget.configure(name)
|
||||
self.assertEqual(len(t), 5)
|
||||
## XXX
|
||||
if not isinstance(t[4], tuple):
|
||||
self.assertEqual2(t[4], expected, eq=eq)
|
||||
self.assertEqual2(t[4], expected, eq=eq)
|
||||
|
||||
def checkInvalidParam(self, widget, name, value, errmsg=None, *,
|
||||
keep_orig=True):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue