bpo-46541: Remove unneeded visits from sqlite3 (GH-31609)

This commit is contained in:
Erlend Egeberg Aasland 2022-02-28 10:07:40 +01:00 committed by GitHub
parent 088dd76dba
commit c32aef4853
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}