diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-16 11:49:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 11:49:43 (GMT) |
commit | 7546914e3f8157d8bad2998677e0ea3ed4cb7939 (patch) | |
tree | 13ca68df49a1a1f0281ecd352991235752a28a09 /Include/boolobject.h | |
parent | 484b40bf189ae881992366f2b7b6b63812d18591 (diff) | |
download | cpython-7546914e3f8157d8bad2998677e0ea3ed4cb7939.zip cpython-7546914e3f8157d8bad2998677e0ea3ed4cb7939.tar.gz cpython-7546914e3f8157d8bad2998677e0ea3ed4cb7939.tar.bz2 |
gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)
Diffstat (limited to 'Include/boolobject.h')
-rw-r--r-- | Include/boolobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/boolobject.h b/Include/boolobject.h index 0a661ff..ca21fbf 100644 --- a/Include/boolobject.h +++ b/Include/boolobject.h @@ -9,7 +9,7 @@ extern "C" { PyAPI_DATA(PyTypeObject) PyBool_Type; -#define PyBool_Check(x) Py_IS_TYPE(x, &PyBool_Type) +#define PyBool_Check(x) Py_IS_TYPE((x), &PyBool_Type) /* Py_False and Py_True are the only two bools in existence. Don't forget to apply Py_INCREF() when returning either!!! */ |