summaryrefslogtreecommitdiff
path: root/Modules/_sqlite/module.c
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2020-09-27 14:14:50 +0200
committerGitHub <noreply@github.com>2020-09-27 14:14:50 +0200
commita937ab45d6af4f99ff16fec73d5d75d93c569456 (patch)
tree70d35f07786859efebeee60f9d3c959fcb97b021 /Modules/_sqlite/module.c
parent00eb063b6600fdb4ba5cfb99da83cc1660ec69bf (diff)
downloadcpython-git-a937ab45d6af4f99ff16fec73d5d75d93c569456.tar.gz
bpo-41861: Convert _sqlite3 cache and node static types to heap types (GH-22417)
Diffstat (limited to 'Modules/_sqlite/module.c')
-rw-r--r--Modules/_sqlite/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c
index 82f58eb248..625d065a31 100644
--- a/Modules/_sqlite/module.c
+++ b/Modules/_sqlite/module.c
@@ -355,7 +355,7 @@ PyMODINIT_FUNC PyInit__sqlite3(void)
(pysqlite_row_setup_types() < 0) ||
(pysqlite_cursor_setup_types() < 0) ||
(pysqlite_connection_setup_types() < 0) ||
- (pysqlite_cache_setup_types() < 0) ||
+ (pysqlite_cache_setup_types(module) < 0) ||
(pysqlite_statement_setup_types() < 0) ||
(pysqlite_prepare_protocol_setup_types() < 0)
) {