This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients serhiy.storchaka
Date 2020-09-28.15:33:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1601307207.95.0.784900613947.issue41876@roundup.psfhosted.org>
In-reply-to
Content
Currently Font objects have default repr:

    <tkinter.font.Font object at 0x7fa22c3bd1e0>

Since Font is just an object oriented wrapper for font name, and Font objects with the same name are equal, it is worth to show the font name in the repr and do not show an id.

    <tkinter.font.Font object 'TkDefaultFont'>
History
Date User Action Args
2020-09-28 15:33:28serhiy.storchakasetrecipients: + serhiy.storchaka
2020-09-28 15:33:27serhiy.storchakasetmessageid: <1601307207.95.0.784900613947.issue41876@roundup.psfhosted.org>
2020-09-28 15:33:27serhiy.storchakalinkissue41876 messages
2020-09-28 15:33:27serhiy.storchakacreate