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-06-20.17:26:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592674018.02.0.658996067478.issue41055@roundup.psfhosted.org>
In-reply-to
Content
There are ancient tests for printing some basic types: str (actually a mix of Python 2 str and unicode), list, tuple, bool, set, deque, defaultdict. They are essentially tests for the tp_print slot. But since the tp_print slot is no longer used, they are virtually repeat tests for str or repr. These tests are outdated and no longer serve the initial purpose. To avoid confusion it is worth to remove them.
History
Date User Action Args
2020-06-20 17:26:58serhiy.storchakasetrecipients: + serhiy.storchaka
2020-06-20 17:26:58serhiy.storchakasetmessageid: <1592674018.02.0.658996067478.issue41055@roundup.psfhosted.org>
2020-06-20 17:26:58serhiy.storchakalinkissue41055 messages
2020-06-20 17:26:57serhiy.storchakacreate