summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/concrete.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/c-api/concrete.rst b/Doc/c-api/concrete.rst
index aad031b..713daab 100644
--- a/Doc/c-api/concrete.rst
+++ b/Doc/c-api/concrete.rst
@@ -563,16 +563,22 @@ Floating Point Objects
precision, minimum and maximum values of a float. It's a thin wrapper
around the header file :file:`float.h`.
+ .. versionadded:: 2.6
+
.. cfunction:: double PyFloat_GetMax(void)
Return the maximum representable finite float *DBL_MAX* as C :ctype:`double`.
+ .. versionadded:: 2.6
+
.. cfunction:: double PyFloat_GetMin(void)
Return the minimum normalized positive float *DBL_MIN* as C :ctype:`double`.
+ .. versionadded:: 2.6
+
.. _complexobjects: