mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +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
|
|
@ -1280,6 +1280,11 @@ class Misc:
|
|||
def __str__(self):
|
||||
"""Return the window path name of this widget."""
|
||||
return self._w
|
||||
|
||||
def __repr__(self):
|
||||
return '<%s.%s object %s>' % (
|
||||
self.__class__.__module__, self.__class__.__qualname__, self._w)
|
||||
|
||||
# Pack methods that apply to the master
|
||||
_noarg_ = ['_noarg_']
|
||||
def pack_propagate(self, flag=_noarg_):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue