aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-05-24 00:53:21 +0100
committerGitHub <noreply@github.com>2019-05-24 00:53:21 +0100
commitcccc11b38e5409861f4db345a4dd45dcc9ba470c (patch)
tree5cd4f31e4c4d0db77bc452dfb6b326849d0d8e86 /Programs
parentbpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not hand... (diff)
downloadcpython-cccc11b38e5409861f4db345a4dd45dcc9ba470c.tar.gz
cpython-cccc11b38e5409861f4db345a4dd45dcc9ba470c.tar.bz2
cpython-cccc11b38e5409861f4db345a4dd45dcc9ba470c.zip
Fix warning in _testembed.c (GH-13533)
Diffstat (limited to 'Programs')
-rw-r--r--Programs/_testembed.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c
index 21d3b445d77..de1c5877f0f 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();