mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +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
|
|
@ -73,7 +73,7 @@ namespace_repr(PyObject *ns)
|
|||
const char * name;
|
||||
|
||||
name = (Py_TYPE(ns) == &_PyNamespace_Type) ? "namespace"
|
||||
: ns->ob_type->tp_name;
|
||||
: Py_TYPE(ns)->tp_name;
|
||||
|
||||
i = Py_ReprEnter(ns);
|
||||
if (i != 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue