8000 bpo-42064: Pass module state to trace, progress, and authorizer callbacks by erlend-aasland · Pull Request #27940 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-42064: Pass module state to trace, progress, and authorizer callbacks #27940

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 17 commits into from
Sep 7, 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
Next Next commit
Ajdust comment
  • Loading branch information
Erlend E. Aasland committed Aug 25, 2021
commit 71f66cac1e172ca74a3915eaddd0117cbd60bd48
3 changes: 1 addition & 2 deletions Modules/_sqlite/connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ typedef struct
*/
PyObject* text_factory;

/* Remember callback contexts used by the trace_callback, progress_handler,
* and authorizer_cb handlers */
// Remember contexts used by the trace, progress, and authoriser callbacks
callback_context *trace_ctx;
callback_context *progress_ctx;
callback_context *authorizer_ctx;
Expand Down
0