Fix compiler errors for unused variables in marshal.c (GH-26977)

https://github.com/python/cpython/commit/66c53b48e1f5c841d9f48e51ce7bf1a74b7... commit: 66c53b48e1f5c841d9f48e51ce7bf1a74b75b629 branch: main author: Pablo Galindo <Pablogsal@gmail.com> committer: pablogsal <Pablogsal@gmail.com> date: 2021-06-30T21:55:57+01:00 summary: Fix compiler errors for unused variables in marshal.c (GH-26977) files: M Python/marshal.c diff --git a/Python/marshal.c b/Python/marshal.c index 182dee7966aa8..6c08189cca29b 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,
participants (1)
-
pablogsal