From: Georg Brandl Date: Sat, 1 Dec 2007 13:23:04 +0000 (+0000) Subject: Add versionadded tags missing in r59254. Do NOT merge to Py3k. X-Git-Tag: v2.6a1~972 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=861320d5a757ffb9a7b392a99e68dce3f61aebf8;p=python Add versionadded tags missing in r59254. Do NOT merge to Py3k. --- diff --git a/Doc/c-api/concrete.rst b/Doc/c-api/concrete.rst index aad031b4cb..713daabda8 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: