8000 [3.9] bpo-43439: Wrapt the tuple in the audit events for the gc module (GH-24836). by pablogsal · Pull Request #24855 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] bpo-43439: Wrapt the tuple in the audit events for the gc module (GH-24836). #24855

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
Mar 14, 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
Update gcmodule.c
  • Loading branch information
pablogsal authored Mar 14, 2021
commit 298eb02034f0d400f6c823c08cdb56d58880e8c2
2 changes: 1 addition & 1 deletion Modules/gcmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1672,8 +1672,8 @@ Return the list of objects that directly refer to any of objs.");
static PyObject *
gc_get_referrers(PyObject *self, PyObject *args)
{
int i;
PyThreadState *tstate = _PyThreadState_GET();
int i;

if (PySys_Audit("gc.get_referrers", "(O)", args) < 0) {
return NULL;
Expand Down
0