8000 bpo-42064: Convert `sqlite3` global state to module state by erlend-aasland · Pull Request #29073 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-42064: Convert sqlite3 global state to module state #29073

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 4 commits into from
Oct 27, 2021
Merged
Changes from 1 commit
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
Diff view
Prev Previous commit
Address review
  • Loading branch information
Erlend E. Aasland committed Oct 26, 2021
commit 5da6ded766bb2fa3f3131ece03c7ff69e1a6052c
2 changes: 1 addition & 1 deletion Modules/_sqlite/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pysqlite_get_state(PyObject *module)
return state;
}

struct PyModuleDef _sqlite3module;
extern struct PyModuleDef _sqlite3module;
static inline pysqlite_state *
pysqlite_get_state_by_type(PyTypeObject *tp)
{
Expand Down
0