diff options
Diffstat (limited to 'Programs/_testembed.c')
| -rw-r--r-- | Programs/_testembed.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c index 21d3b44..de1c587 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -1231,15 +1231,13 @@ static int _audit_subinterpreter_hook(const char *event, PyObject *args, void *u  static int test_audit_subinterpreter(void)  { -    PyThreadState *ts; -      Py_IgnoreEnvironmentFlag = 0;      PySys_AddAuditHook(_audit_subinterpreter_hook, NULL);      _testembed_Py_Initialize(); -    ts = Py_NewInterpreter(); -    ts = Py_NewInterpreter(); -    ts = Py_NewInterpreter(); +    Py_NewInterpreter(); +    Py_NewInterpreter(); +    Py_NewInterpreter();      Py_Finalize();  | 
