bpo-36763, _testembed: enable assert() in release mode (GH-13857)

This commit is contained in:
Victor Stinner 2019-06-06 14:25:18 +02:00 committed by GitHub
parent 6af230359e
commit 013a18a651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -1,10 +1,13 @@
/* FIXME: PEP 587 makes these functions public */
#ifndef Py_BUILD_CORE_MODULE
# define Py_BUILD_CORE_MODULE
#endif
/* Always enable assertion (even in release mode) */
#undef NDEBUG
#include <Python.h>
#include "pycore_initconfig.h" /* FIXME: PEP 587 makes these functions public */
#include "pycore_initconfig.h" /* _PyConfig_InitCompatConfig() */
#include "pycore_pystate.h" /* _PyRuntime */
#include <Python.h>
#include "pythread.h"
#include <inttypes.h>