8000 bpo-40077: Convert arraymodule to use heap types and establish module state by erlend-aasland · Pull Request #23124 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-40077: Convert arraymodule to use heap types and establish module state #23124

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 14 commits into from
Jan 2, 2021
Prev Previous commit
Next Next commit
Merge branch 'master' into bpo-40077/array
  • Loading branch information
Erlend Egeberg Aasland authored Dec 16, 2020
commit b86185d0b1cb197642fb8b2a345d7c5d2612259c
2 changes: 1 addition & 1 deletion Modules/arraymodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ array_dealloc(arrayobject *op)
if (op->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) op);
if (op->ob_item != NULL)
PyMem_DEL(op->ob_item);
PyMem_Free(op->ob_item);
tp->tp_free(op);
Py_DECREF(tp);
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0