summaryrefslogtreecommitdiff
path: root/Programs/_testembed.c
diff options
context:
space:
mode:
Diffstat (limited to 'Programs/_testembed.c')
-rw-r--r--Programs/_testembed.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c
index c7660f9581..94a3c3d9c8 100644
--- a/Programs/_testembed.c
+++ b/Programs/_testembed.c
@@ -41,9 +41,7 @@ static void print_subinterp(void)
static int test_repeated_init_and_subinterpreters(void)
{
PyThreadState *mainstate, *substate;
-#ifdef WITH_THREAD
PyGILState_STATE gilstate;
-#endif
int i, j;
for (i=0; i<15; i++) {
@@ -51,12 +49,10 @@ static int test_repeated_init_and_subinterpreters(void)
_testembed_Py_Initialize();
mainstate = PyThreadState_Get();
-#ifdef WITH_THREAD
PyEval_InitThreads();
PyEval_ReleaseThread(mainstate);
gilstate = PyGILState_Ensure();
-#endif
print_subinterp();
PyThreadState_Swap(NULL);
@@ -68,9 +64,7 @@ static int test_repeated_init_and_subinterpreters(void)
PyThreadState_Swap(mainstate);
print_subinterp();
-#ifdef WITH_THREAD
PyGILState_Release(gilstate);
-#endif
PyEval_RestoreThread(mainstate);
Py_Finalize();