summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/bool.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/c-api/bool.rst')
-rw-r--r--Doc/c-api/bool.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/c-api/bool.rst b/Doc/c-api/bool.rst
index fede348..a9fb342 100644
--- a/Doc/c-api/bool.rst
+++ b/Doc/c-api/bool.rst
@@ -15,8 +15,6 @@ are available, however.
Return true if *o* is of type :c:data:`PyBool_Type`.
- .. versionadded:: 2.3
-
.. c:var:: PyObject* Py_False
@@ -35,20 +33,14 @@ are available, however.
Return :const:`Py_False` from a function, properly incrementing its reference
count.
- .. versionadded:: 2.4
-
.. c:macro:: Py_RETURN_TRUE
Return :const:`Py_True` from a function, properly incrementing its reference
count.
- .. versionadded:: 2.4
-
.. c:function:: PyObject* PyBool_FromLong(long v)
Return a new reference to :const:`Py_True` or :const:`Py_False` depending on the
truth value of *v*.
-
- .. versionadded:: 2.3