mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
#1730136: Fix comparison between a tk Font object and an object of a different type.
This commit is contained in:
parent
19ec67acf6
commit
d61d077bf5
3 changed files with 24 additions and 1 deletions
20
Lib/tkinter/test/test_tkinter/test_font.py
Normal file
20
Lib/tkinter/test/test_tkinter/test_font.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import unittest
|
||||
import tkinter
|
||||
from tkinter import font
|
||||
from test.support import requires, run_unittest
|
||||
|
||||
requires('gui')
|
||||
|
||||
class FontTest(unittest.TestCase):
|
||||
def test_font_eq(self):
|
||||
font1 = font.nametofont("system")
|
||||
font2 = font.nametofont("system")
|
||||
self.assertIsNot(font1, font2)
|
||||
self.assertEqual(font1, font2)
|
||||
self.assertNotEqual(font1, font1.copy())
|
||||
self.assertNotEqual(font1, 0)
|
||||
|
||||
tests_gui = (FontTest, )
|
||||
|
||||
if __name__ == "__main__":
|
||||
run_unittest(*tests_gui)
|
||||
Loading…
Add table
Add a link
Reference in a new issue