diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-06-30 20:55:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 20:55:57 (GMT) |
commit | 66c53b48e1f5c841d9f48e51ce7bf1a74b75b629 (patch) | |
tree | 139888ec3c8ff279c369677144df498e2cbf2097 /Python | |
parent | d3a95c1b6eacbbbd92c294744e7ed41932f3f63e (diff) | |
download | cpython-66c53b48e1f5c841d9f48e51ce7bf1a74b75b629.zip cpython-66c53b48e1f5c841d9f48e51ce7bf1a74b75b629.tar.gz cpython-66c53b48e1f5c841d9f48e51ce7bf1a74b75b629.tar.bz2 |
Fix compiler errors for unused variables in marshal.c (GH-26977)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/marshal.c | 2 |
1 files changed, 0 insertions, 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, |