mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
Issue #20636: Improved the repr of Tkinter widgets.
This commit is contained in:
parent
578c9211d6
commit
bcc174615c
4 changed files with 13 additions and 1 deletions
|
@ -10,6 +10,11 @@ class MiscTest(unittest.TestCase):
|
|||
def setUp(self):
|
||||
self.root = ttk.setup_master()
|
||||
|
||||
def test_repr(self):
|
||||
t = tkinter.Toplevel(self.root, name='top')
|
||||
f = tkinter.Frame(t, name='child')
|
||||
self.assertEqual(repr(f), '<tkinter.Frame object .top.child>')
|
||||
|
||||
def test_tk_setPalette(self):
|
||||
root = self.root
|
||||
root.tk_setPalette('black')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue