◐ Shell
clean mode source ↗

bpo-46541: Remove unneeded visits from sqlite3 by erlend-aasland · Pull Request #31609 · python/cpython

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