From: Pablo Galindo Date: Thu, 23 May 2019 23:53:21 +0000 (+0100) Subject: Fix warning in _testembed.c (GH-13533) X-Git-Tag: v3.8.0b1~236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cccc11b38e5409861f4db345a4dd45dcc9ba470c;p=thirdparty%2FPython%2Fcpython.git Fix warning in _testembed.c (GH-13533) --- diff --git a/Programs/_testembed.c b/Programs/_testembed.c index 21d3b445d775..de1c5877f0f5 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();