Staging
v0.5.1
https://github.com/python/cpython
Revision 3208880f1c72800bacf94a2045fcb0436702c7a1 authored by Holger Frey on 22 February 2019, 11:05:20 UTC, committed by Cheryl Sabella on 22 February 2019, 11:05:20 UTC
Document usage of the existing `--prompt` option in the command line help.
1 parent 6e240dd
Raw File
Tip revision: 3208880f1c72800bacf94a2045fcb0436702c7a1 authored by Holger Frey on 22 February 2019, 11:05:20 UTC
Include the --prompt flag in venv's help output (GH-10711)
Tip revision: 3208880
pyfpe.c
/* 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;
}
back to top