From: Pablo Galindo Date: Wed, 30 Jun 2021 20:55:57 +0000 (+0100) Subject: Fix compiler errors for unused variables in marshal.c (GH-26977) X-Git-Tag: v3.11.0a1~758 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66c53b48e1f5c841d9f48e51ce7bf1a74b75b629;p=thirdparty%2FPython%2Fcpython.git Fix compiler errors for unused variables in marshal.c (GH-26977) --- diff --git a/Python/marshal.c b/Python/marshal.c index 182dee7966aa..6c08189cca29 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1371,8 +1371,6 @@ r_object(RFILE *p) if (exceptiontable == NULL) goto code_error; - Py_ssize_t nlocalsplus = PyTuple_GET_SIZE(localsplusnames); - struct _PyCodeConstructor con = { .filename = filename, .name = name,