bpo-44530: Reverts a change to the 'code.__new__' audit event (GH-29809)

This commit is contained in:
Steve Dower 2021-11-27 00:26:45 +00:00 committed by GitHub
parent 7edb6270a7
commit db55f3faba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -0,0 +1,2 @@
Reverts a change to the ``code.__new__`` :ref:`audit event <audit-events>`
from an earlier prerelease.

View file

@ -1254,8 +1254,8 @@ code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount,
PyObject *ourfreevars = NULL;
PyObject *ourcellvars = NULL;
if (PySys_Audit("code.__new__", "OOOOiiiiii",
code, filename, name, qualname, argcount, posonlyargcount,
if (PySys_Audit("code.__new__", "OOOiiiiii",
code, filename, name, argcount, posonlyargcount,
kwonlyargcount, nlocals, stacksize, flags) < 0) {
goto cleanup;
}
@ -1638,8 +1638,8 @@ code_replace_impl(PyCodeObject *self, int co_argcount,
#undef CHECK_INT_ARG
if (PySys_Audit("code.__new__", "OOOOiiiiii",
co_code, co_filename, co_name, co_qualname, co_argcount,
if (PySys_Audit("code.__new__", "OOOiiiiii",
co_code, co_filename, co_name, co_argcount,
co_posonlyargcount, co_kwonlyargcount, co_nlocals,
co_stacksize, co_flags) < 0) {
return NULL;