summaryrefslogtreecommitdiff
path: root/Objects/call.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-02-07 03:04:21 +0100
committerGitHub <noreply@github.com>2020-02-07 03:04:21 +0100
commit58ac700fb09497df14d4492b6f820109490b2b88 (patch)
treed6a87b277dd133543974b1b24cf65df4c5c8eff4 /Objects/call.c
parenta102ed7d2f0e7e05438f14d5fb72ca0358602249 (diff)
downloadcpython-git-58ac700fb09497df14d4492b6f820109490b2b88.tar.gz
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/call.c')
-rw-r--r--Objects/call.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/call.c b/Objects/call.c
index 0f8cb5aa24..d1d50b647f 100644
--- a/Objects/call.c
+++ b/Objects/call.c
@@ -263,11 +263,11 @@ _PyObject_Call(PyThreadState *tstate, PyObject *callable,
return PyVectorcall_Call(callable, args, kwargs);
}
else {
- call = callable->ob_type->tp_call;
+ call = Py_TYPE(callable)->tp_call;
if (call == NULL) {
_PyErr_Format(tstate, PyExc_TypeError,
"'%.200s' object is not callable",
- callable->ob_type->tp_name);
+ Py_TYPE(callable)->tp_name);
return NULL;
}