1997-02-14 18:53:12 -04:00
|
|
|
#ifndef Py_PYFPE_H
|
|
|
|
#define Py_PYFPE_H
|
2019-11-20 07:17:09 -04:00
|
|
|
/* Header excluded from the stable API */
|
|
|
|
#ifndef Py_LIMITED_API
|
1997-02-14 18:53:12 -04:00
|
|
|
|
2018-01-06 03:15:34 -04:00
|
|
|
/* These macros used to do something when Python was built with --with-fpectl,
|
|
|
|
* but support for that was dropped in 3.7. We continue to define them though,
|
|
|
|
* to avoid breaking API users.
|
1997-02-14 18:53:12 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define PyFPE_START_PROTECT(err_string, leave_stmt)
|
1997-03-14 00:23:42 -04:00
|
|
|
#define PyFPE_END_PROTECT(v)
|
1997-02-14 18:53:12 -04:00
|
|
|
|
2019-11-20 07:17:09 -04:00
|
|
|
#endif /* !defined(Py_LIMITED_API) */
|
1997-02-14 18:53:12 -04:00
|
|
|
#endif /* !Py_PYFPE_H */
|