From c32aef48533769161e1247927a5b418322e0860c Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland Date: Mon, 28 Feb 2022 10:07:40 +0100 Subject: bpo-46541: Remove unneeded visits from sqlite3 (GH-31609) --- Modules/_sqlite/module.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c index 35cdcbe..70fde49 100644 --- a/Modules/_sqlite/module.c +++ b/Modules/_sqlite/module.c @@ -590,13 +590,6 @@ module_traverse(PyObject *module, visitproc visit, void *arg) Py_VISIT(state->lru_cache); Py_VISIT(state->psyco_adapters); - // Interned strings - Py_VISIT(state->str___adapt__); - Py_VISIT(state->str___conform__); - Py_VISIT(state->str_executescript); - Py_VISIT(state->str_finalize); - Py_VISIT(state->str_upper); - return 0; } -- cgit v0.12