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 jdemeyer
Recipients ZackerySpytz, jdemeyer, philthompson10
Date 2019-07-17.08:17:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563351470.78.0.290234886928.issue37588@roundup.psfhosted.org>
In-reply-to
Content
One possible solution would be to have a macro to suppress the tp_print field in the first place. Something like

#ifndef PY_NO_TP_PRINT
    /* bpo-37250: kept for backwards compatibility in CPython 3.8 only */
    Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int);
#endif
History
Date User Action Args
2019-07-17 08:17:50jdemeyersetrecipients: + jdemeyer, philthompson10, ZackerySpytz
2019-07-17 08:17:50jdemeyersetmessageid: <1563351470.78.0.290234886928.issue37588@roundup.psfhosted.org>
2019-07-17 08:17:50jdemeyerlinkissue37588 messages
2019-07-17 08:17:50jdemeyercreate