mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
bpo-36842: Implement PEP 578 (GH-12613)
Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs.
This commit is contained in:
parent
e788057a91
commit
b82e17e626
70 changed files with 3565 additions and 1816 deletions
|
|
@ -2635,6 +2635,11 @@ array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
|||
if (!PyArg_ParseTuple(args, "C|O:array", &c, &initial))
|
||||
return NULL;
|
||||
|
||||
if (PySys_Audit("array.__new__", "CO",
|
||||
c, initial ? initial : Py_None) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (initial && c != 'u') {
|
||||
if (PyUnicode_Check(initial)) {
|
||||
PyErr_Format(PyExc_TypeError, "cannot use a str to initialize "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue