summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/src/Include/weakrefobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python3/src/Include/weakrefobject.h')
-rw-r--r--contrib/tools/python3/src/Include/weakrefobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tools/python3/src/Include/weakrefobject.h b/contrib/tools/python3/src/Include/weakrefobject.h
index f071e9c759a..8e1fa1b9286 100644
--- a/contrib/tools/python3/src/Include/weakrefobject.h
+++ b/contrib/tools/python3/src/Include/weakrefobject.h
@@ -12,12 +12,12 @@ PyAPI_DATA(PyTypeObject) _PyWeakref_RefType;
PyAPI_DATA(PyTypeObject) _PyWeakref_ProxyType;
PyAPI_DATA(PyTypeObject) _PyWeakref_CallableProxyType;
-#define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType)
+#define PyWeakref_CheckRef(op) PyObject_TypeCheck((op), &_PyWeakref_RefType)
#define PyWeakref_CheckRefExact(op) \
- Py_IS_TYPE(op, &_PyWeakref_RefType)
+ Py_IS_TYPE((op), &_PyWeakref_RefType)
#define PyWeakref_CheckProxy(op) \
- (Py_IS_TYPE(op, &_PyWeakref_ProxyType) || \
- Py_IS_TYPE(op, &_PyWeakref_CallableProxyType))
+ (Py_IS_TYPE((op), &_PyWeakref_ProxyType) \
+ || Py_IS_TYPE((op), &_PyWeakref_CallableProxyType))
#define PyWeakref_Check(op) \
(PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))