8000 Fix compiler errors for unused variables in marshal.c by pablogsal · Pull Request #26977 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Fix compiler errors for unused variables in marshal.c #26977

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix compiler errors for unused variables in marshal.c
  • Loading branch information
pablogsal committed Jun 30, 2021
commit 0f9a661b2676434b7600df32737be87eef0ba3b4
2 changes: 0 additions & 2 deletions Python/marshal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
0