Staging
v0.5.1
https://github.com/python/cpython
Revision 73e02ff0d47c37cf2a8f137cfbea0b36d26c48bb authored by Miss Islington (bot) on 18 November 2020, 12:29:34 UTC, committed by GitHub on 18 November 2020, 12:29:34 UTC

skip test_min_max_version_mismatch when TLS 1.0 is not available

Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit ce04e7105bc396c32667a22b928a712ba0778a3f)

Co-authored-by: Christian Heimes <christian@python.org>
1 parent a702bd4
Raw File
Tip revision: 73e02ff0d47c37cf2a8f137cfbea0b36d26c48bb authored by Miss Islington (bot) on 18 November 2020, 12:29:34 UTC
bpo-41561: skip test_min_max_version_mismatch (GH-22308)
Tip revision: 73e02ff
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