Fix warning in _testembed.c (GH-13533)

This commit is contained in:
Pablo Galindo 2019-05-24 00:53:21 +01:00 committed by GitHub
parent 608876b6b1
commit cccc11b38e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 5 deletions

View File

@ -1231,15 +1231,13 @@ static int _audit_subinterpreter_hook(const char *event, PyObject *args, void *u
static int test_audit_subinterpreter(void) static int test_audit_subinterpreter(void)
{ {
PyThreadState *ts;
Py_IgnoreEnvironmentFlag = 0; Py_IgnoreEnvironmentFlag = 0;
PySys_AddAuditHook(_audit_subinterpreter_hook, NULL); PySys_AddAuditHook(_audit_subinterpreter_hook, NULL);
_testembed_Py_Initialize(); _testembed_Py_Initialize();
ts = Py_NewInterpreter(); Py_NewInterpreter();
ts = Py_NewInterpreter(); Py_NewInterpreter();
ts = Py_NewInterpreter(); Py_NewInterpreter();
Py_Finalize(); Py_Finalize();