mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Replace direct access to PyObject.ob_type with Py_TYPE().
This commit is contained in:
parent
a102ed7d2f
commit
58ac700fb0
20 changed files with 109 additions and 109 deletions
|
@ -2762,7 +2762,7 @@ PyBytes_FromObject(PyObject *x)
|
|||
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"cannot convert '%.200s' object to bytes",
|
||||
x->ob_type->tp_name);
|
||||
Py_TYPE(x)->tp_name);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue