mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
bpo-41180: Audit code.__new__ when unmarshalling (GH-21271)
This commit is contained in:
parent
b1cc6ba73a
commit
d160e0f8e2
1 changed files with 6 additions and 0 deletions
|
@ -1371,6 +1371,12 @@ r_object(RFILE *p)
|
||||||
if (lnotab == NULL)
|
if (lnotab == NULL)
|
||||||
goto code_error;
|
goto code_error;
|
||||||
|
|
||||||
|
if (PySys_Audit("code.__new__", "OOOiiiiii",
|
||||||
|
code, filename, name, argcount, posonlyargcount,
|
||||||
|
kwonlyargcount, nlocals, stacksize, flags) < 0) {
|
||||||
|
goto code_error;
|
||||||
|
}
|
||||||
|
|
||||||
v = (PyObject *) PyCode_NewWithPosOnlyArgs(
|
v = (PyObject *) PyCode_NewWithPosOnlyArgs(
|
||||||
argcount, posonlyargcount, kwonlyargcount,
|
argcount, posonlyargcount, kwonlyargcount,
|
||||||
nlocals, stacksize, flags,
|
nlocals, stacksize, flags,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue