diff options
author | Victor Stinner <vstinner@python.org> | 2020-07-10 10:40:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 10:40:38 (GMT) |
commit | 8182cc2e68a3c6ea5d5342fed3f1c76b0521fbc1 (patch) | |
tree | 697757da0c635614b16aafc81c3ea1172a634a53 /Objects/abstract.c | |
parent | d878349bac6c154fbfeffe7d4b38e2ddb833f135 (diff) | |
download | cpython-8182cc2e68a3c6ea5d5342fed3f1c76b0521fbc1.zip cpython-8182cc2e68a3c6ea5d5342fed3f1c76b0521fbc1.tar.gz cpython-8182cc2e68a3c6ea5d5342fed3f1c76b0521fbc1.tar.bz2 |
bpo-39573: Use the Py_TYPE() macro (GH-21433)
Replace obj->ob_type with Py_TYPE(obj).
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r-- | Objects/abstract.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index 3494f33..7bd72c9 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -1382,7 +1382,7 @@ PyNumber_Long(PyObject *o) if (!PyLong_Check(result)) { PyErr_Format(PyExc_TypeError, "__int__ returned non-int (type %.200s)", - result->ob_type->tp_name); + Py_TYPE(result)->tp_name); Py_DECREF(result); return NULL; } @@ -1391,7 +1391,7 @@ PyNumber_Long(PyObject *o) "__int__ returned non-int (type %.200s). " "The ability to return an instance of a strict subclass of int " "is deprecated, and may be removed in a future version of Python.", - result->ob_type->tp_name)) { + Py_TYPE(result)->tp_name)) { Py_DECREF(result); return NULL; } |