From 861320d5a757ffb9a7b392a99e68dce3f61aebf8 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 1 Dec 2007 13:23:04 +0000 Subject: [PATCH] Add versionadded tags missing in r59254. Do NOT merge to Py3k. --- Doc/c-api/concrete.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Doc/c-api/concrete.rst b/Doc/c-api/concrete.rst index aad031b4cb2..713daabda86 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: