Skip to content

Commit d09ae9b

Browse files
author
Erlend E. Aasland
committed
bpo-46541: Remove unneeded visits from sqlite3
1 parent 088dd76 commit d09ae9b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Modules/_sqlite/module.c

-7
Original file line numberDiff line numberDiff line change
@@ -590,13 +590,6 @@ module_traverse(PyObject *module, visitproc visit, void *arg)
590590
Py_VISIT(state->lru_cache);
591591
Py_VISIT(state->psyco_adapters);
592592

593-
// Interned strings
594-
Py_VISIT(state->str___adapt__);
595-
Py_VISIT(state->str___conform__);
596-
Py_VISIT(state->str_executescript);
597-
Py_VISIT(state->str_finalize);
598-
Py_VISIT(state->str_upper);
599-
600593
return 0;
601594
}
602595

0 commit comments

Comments
 (0)