diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2022-02-28 09:07:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 09:07:40 (GMT) |
commit | c32aef48533769161e1247927a5b418322e0860c (patch) | |
tree | 0a6d07c491147aed2dac5d6f49f00c0a36ccadb9 /Modules/_sqlite | |
parent | 088dd76dba68c2538776d9920607f81e54544cbd (diff) | |
download | cpython-c32aef48533769161e1247927a5b418322e0860c.zip cpython-c32aef48533769161e1247927a5b418322e0860c.tar.gz cpython-c32aef48533769161e1247927a5b418322e0860c.tar.bz2 |
bpo-46541: Remove unneeded visits from sqlite3 (GH-31609)
Diffstat (limited to 'Modules/_sqlite')
-rw-r--r-- | Modules/_sqlite/module.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c index 35cdcbe..70fde49 100644 --- a/Modules/_sqlite/module.c +++ b/Modules/_sqlite/module.c @@ -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; } |