8000 bpo-41861: Convert sqlite3 cache and node types to heap types by erlend-aasland · Pull Request #22417 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-41861: Convert sqlite3 cache and node types to heap types #22417

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
Changes from 1 commit
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
Prev Previous commit
Make node type spec static
  • Loading branch information
Erlend E. Aasland committed Sep 26, 2020
commit e8be010a2dcfbe775da053bbd6027695b27f098c
2 changes: 1 addition & 1 deletion Modules/_sqlite/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ static PyType_Slot pysqlite_NodeType_slots[] = {
{0, NULL},
};

PyType_Spec pysqlite_NodeType_spec = {
static PyType_Spec pysqlite_NodeType_spec = {
.name = MODULE_NAME ".Node",
.basicsize = sizeof(pysqlite_Node),
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE,
Expand Down
0