Message356871
| 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:05 | vstinner | set | recipients:
+ vstinner |
| 2019年11月18日 14:40:05 | vstinner | set | messageid: <1574088005.78.0.259571695982.issue38835@roundup.psfhosted.org> |
| 2019年11月18日 14:40:05 | vstinner | link | issue38835 messages |
| 2019年11月18日 14:40:05 | vstinner | create |
|