Staging
v0.8.1
Revision a0da90720d5330c53b8083272374ede1c7a1e33a authored by Miss Islington (bot) on 15 September 2020, 13:56:43 UTC, committed by GitHub on 15 September 2020, 13:56:43 UTC
Revise example of "continue" in the tutorial documentation
(cherry picked from commit 7bcc6456ad4704da9b287c8045768fa53961adc5)

Co-authored-by: Neeraj Samtani <neerajjsamtani@gmail.com>

Co-authored-by: Neeraj Samtani <neerajjsamtani@gmail.com>
1 parent 624cc10
Raw File
pyfpe.h
#ifndef Py_PYFPE_H
#define Py_PYFPE_H

/* 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.
 */

#define PyFPE_START_PROTECT(err_string, leave_stmt)
#define PyFPE_END_PROTECT(v)

#endif /* !Py_PYFPE_H */
back to top