From 66c53b48e1f5c841d9f48e51ce7bf1a74b75b629 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Wed, 30 Jun 2021 21:55:57 +0100 Subject: Fix compiler errors for unused variables in marshal.c (GH-26977) --- Python/marshal.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Python/marshal.c b/Python/marshal.c index 182dee7..6c08189 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, -- cgit v0.12