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 vstinner
Recipients vstinner
Date 2019-11-18.14:40:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1574088005.78.0.259571695982.issue38835@roundup.psfhosted.org>
In-reply-to
Content
Python/pyfpe.c still contains two variables (PyFPE_jbuf and PyFPE_counter) and one function (PyFPE_dummy) for ABI compatibility:
---
/* These variables used to be used when Python was built with --with-fpectl,
 * but support for that was dropped in 3.7. We continue to define them,
 * though, because they may be referenced by extensions using the stable ABI.
 */

#include "setjmp.h"

jmp_buf PyFPE_jbuf;
int PyFPE_counter;

double
PyFPE_dummy(void *dummy)
{
    return 1.0;
}
---
History
Date User Action Args
2019-11-18 14:40:05vstinnersetrecipients: + vstinner
2019-11-18 14:40:05vstinnersetmessageid: <1574088005.78.0.259571695982.issue38835@roundup.psfhosted.org>
2019-11-18 14:40:05vstinnerlinkissue38835 messages
2019-11-18 14:40:05vstinnercreate