summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-12-01 13:23:04 (GMT)
committerGeorg Brandl <georg@python.org>2007-12-01 13:23:04 (GMT)
commit861320d5a757ffb9a7b392a99e68dce3f61aebf8 (patch)
treeddfc2914174c3ee70df89a08ec439755aec110e2 /Doc/c-api
parentdfdfaab1c54425113e07b623f7dc38f60762cee1 (diff)
downloadcpython-861320d5a757ffb9a7b392a99e68dce3f61aebf8.zip
cpython-861320d5a757ffb9a7b392a99e68dce3f61aebf8.tar.gz
cpython-861320d5a757ffb9a7b392a99e68dce3f61aebf8.tar.bz2
Add versionadded tags missing in r59254. Do NOT merge to Py3k.
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: