Skip to content

Commit

Permalink
bpo-46541: Remove unneeded visits from sqlite3 (GH-31609)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erlend Egeberg Aasland authored Feb 28, 2022
1 parent 088dd76 commit c32aef4
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Modules/_sqlite/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit c32aef4

Please sign in to comment.