mirror of
https://github.com/python/cpython.git
synced 2025-08-23 10:16:01 +00:00
bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707)
This commit is contained in:
parent
938d9a0167
commit
3b57f50efc
2 changed files with 4 additions and 4 deletions
|
@ -390,9 +390,9 @@ code_new(PyTypeObject *type, PyObject *args, PyObject *kw)
|
|||
&PyTuple_Type, &cellvars))
|
||||
return NULL;
|
||||
|
||||
if (PySys_Audit("code.__new__", "OOOiiiii",
|
||||
code, filename, name, argcount, kwonlyargcount,
|
||||
nlocals, stacksize, flags) < 0) {
|
||||
if (PySys_Audit("code.__new__", "OOOiiiiii",
|
||||
code, filename, name, argcount, posonlyargcount,
|
||||
kwonlyargcount, nlocals, stacksize, flags) < 0) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue