commit | 58ac700fb09497df14d4492b6f820109490b2b88 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Fri Feb 07 03:04:21 2020 +0100 |
committer | GitHub <noreply@github.com> | Fri Feb 07 03:04:21 2020 +0100 |
tree | d6a87b277dd133543974b1b24cf65df4c5c8eff4 | |
parent | a102ed7d2f0e7e05438f14d5fb72ca0358602249 [diff] [blame] |
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) Replace direct access to PyObject.ob_type with Py_TYPE().
diff --git a/Objects/cellobject.c b/Objects/cellobject.c index 911cf52..e97feef 100644 --- a/Objects/cellobject.c +++ b/Objects/cellobject.c
@@ -112,7 +112,7 @@ return PyUnicode_FromFormat("<cell at %p: empty>", op); return PyUnicode_FromFormat("<cell at %p: %.80s object at %p>", - op, op->ob_ref->ob_type->tp_name, + op, Py_TYPE(op->ob_ref)->tp_name, op->ob_ref); }