8000 bpo-46541: Remove unneeded visits from sqlite3 by erlend-aasland · Pull Request #31609 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-46541: Remove unneeded visits from sqlite3 #31609

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
bpo-46541: Remove unneeded visits from sqlite3
  • Loading branch information
Erlend E. Aasland committed Feb 28, 2022
commit d09ae9b187683d3ffcb88e72694f1538aaae5cdd
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