diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-12-29 10:56:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 10:56:55 (GMT) |
commit | 1df56bc0597a051c13d53514e120e9b6764185f8 (patch) | |
tree | c3dfca8059205e1a4d6193097f4066b27f794154 /Lib/tkinter/test/test_tkinter/test_variables.py | |
parent | 156b7f7052102ee1633a18e9a136ad8c38f66db0 (diff) | |
download | cpython-1df56bc0597a051c13d53514e120e9b6764185f8.zip cpython-1df56bc0597a051c13d53514e120e9b6764185f8.tar.gz cpython-1df56bc0597a051c13d53514e120e9b6764185f8.tar.bz2 |
bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-23968)
Objects which belong to different Tcl interpreters are now always
different, even if they have the same name.
Diffstat (limited to 'Lib/tkinter/test/test_tkinter/test_variables.py')
-rw-r--r-- | Lib/tkinter/test/test_tkinter/test_variables.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Lib/tkinter/test/test_tkinter/test_variables.py b/Lib/tkinter/test/test_tkinter/test_variables.py index 63d7c21..6aebe8d 100644 --- a/Lib/tkinter/test/test_tkinter/test_variables.py +++ b/Lib/tkinter/test/test_tkinter/test_variables.py @@ -58,22 +58,32 @@ class TestVariable(TestBase): del v2 self.assertFalse(self.info_exists("name")) - def test___eq__(self): + def test_equality(self): # values doesn't matter, only class and name are checked v1 = Variable(self.root, name="abc") v2 = Variable(self.root, name="abc") self.assertIsNot(v1, v2) self.assertEqual(v1, v2) - v3 = StringVar(self.root, name="abc") + v3 = Variable(self.root, name="cba") self.assertNotEqual(v1, v3) + v4 = StringVar(self.root, name="abc") + self.assertEqual(str(v1), str(v4)) + self.assertNotEqual(v1, v4) + V = type('Variable', (), {}) self.assertNotEqual(v1, V()) self.assertNotEqual(v1, object()) self.assertEqual(v1, ALWAYS_EQ) + root2 = tkinter.Tk() + self.addCleanup(root2.destroy) + v5 = Variable(root2, name="abc") + self.assertEqual(str(v1), str(v5)) + self.assertNotEqual(v1, v5) + def test_invalid_name(self): with self.assertRaises(TypeError): Variable(self.root, name=123) |