summaryrefslogtreecommitdiffstats
path: root/Include/methodobject.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-06-16 11:49:43 (GMT)
committerGitHub <noreply@github.com>2022-06-16 11:49:43 (GMT)
commit7546914e3f8157d8bad2998677e0ea3ed4cb7939 (patch)
tree13ca68df49a1a1f0281ecd352991235752a28a09 /Include/methodobject.h
parent484b40bf189ae881992366f2b7b6b63812d18591 (diff)
downloadcpython-7546914e3f8157d8bad2998677e0ea3ed4cb7939.zip
cpython-7546914e3f8157d8bad2998677e0ea3ed4cb7939.tar.gz
cpython-7546914e3f8157d8bad2998677e0ea3ed4cb7939.tar.bz2
gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)
Diffstat (limited to 'Include/methodobject.h')
-rw-r--r--Include/methodobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index c971d78..72af5ad 100644
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -13,8 +13,8 @@ extern "C" {
PyAPI_DATA(PyTypeObject) PyCFunction_Type;
-#define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)
-#define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
+#define PyCFunction_CheckExact(op) Py_IS_TYPE((op), &PyCFunction_Type)
+#define PyCFunction_Check(op) PyObject_TypeCheck((op), &PyCFunction_Type)
typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
typedef PyObject *(*_PyCFunctionFast) (PyObject *, PyObject *const *, Py_ssize_t);