diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-07 02:04:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 02:04:21 (GMT) |
commit | 58ac700fb09497df14d4492b6f820109490b2b88 (patch) | |
tree | d6a87b277dd133543974b1b24cf65df4c5c8eff4 /Objects/funcobject.c | |
parent | a102ed7d2f0e7e05438f14d5fb72ca0358602249 (diff) | |
download | cpython-58ac700fb09497df14d4492b6f820109490b2b88.zip cpython-58ac700fb09497df14d4492b6f820109490b2b88.tar.gz cpython-58ac700fb09497df14d4492b6f820109490b2b88.tar.bz2 |
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Replace direct access to PyObject.ob_type with Py_TYPE().
Diffstat (limited to 'Objects/funcobject.c')
-rw-r--r-- | Objects/funcobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/funcobject.c b/Objects/funcobject.c index b6ffc2a..ebe68ad 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -196,7 +196,7 @@ PyFunction_SetClosure(PyObject *op, PyObject *closure) else { PyErr_Format(PyExc_SystemError, "expected tuple for closure, got '%.100s'", - closure->ob_type->tp_name); + Py_TYPE(closure)->tp_name); return -1; } Py_XSETREF(((PyFunctionObject *)op)->func_closure, closure); @@ -541,7 +541,7 @@ func_new_impl(PyTypeObject *type, PyCodeObject *code, PyObject *globals, if (!PyCell_Check(o)) { return PyErr_Format(PyExc_TypeError, "arg 5 (closure) expected cell, found %s", - o->ob_type->tp_name); + Py_TYPE(o)->tp_name); } } } |