cpython/Doc/c-api/bool.rst

51 lines
1.2 KiB
ReStructuredText
Raw Normal View History

.. highlight:: c
2008-01-20 05:30:57 -04:00
.. _boolobjects:
Boolean Objects
---------------
Booleans in Python are implemented as a subclass of integers. There are only
two booleans, :c:data:`Py_False` and :c:data:`Py_True`. As such, the normal
2008-01-20 05:30:57 -04:00
creation and deletion functions don't apply to booleans. The following macros
are available, however.
.. c:function:: int PyBool_Check(PyObject *o)
2008-01-20 05:30:57 -04:00
Return true if *o* is of type :c:data:`PyBool_Type`. This function always
succeeds.
2008-01-20 05:30:57 -04:00
.. c:var:: PyObject* Py_False
2008-01-20 05:30:57 -04:00
The Python ``False`` object. This object has no methods and is
`immortal <https://peps.python.org/pep-0683/>`_.
.. versionchanged:: 3.12
:c:data:`Py_False` is immortal.
2008-01-20 05:30:57 -04:00
.. c:var:: PyObject* Py_True
2008-01-20 05:30:57 -04:00
The Python ``True`` object. This object has no methods and is
`immortal <https://peps.python.org/pep-0683/>`_.
.. versionchanged:: 3.12
:c:data:`Py_True` is immortal.
2008-01-20 05:30:57 -04:00
.. c:macro:: Py_RETURN_FALSE
2008-01-20 05:30:57 -04:00
Return :c:data:`Py_False` from a function.
2008-01-20 05:30:57 -04:00
.. c:macro:: Py_RETURN_TRUE
2008-01-20 05:30:57 -04:00
Return :c:data:`Py_True` from a function.
2008-01-20 05:30:57 -04:00
.. c:function:: PyObject* PyBool_FromLong(long v)
2008-01-20 05:30:57 -04:00
Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value of *v*.