]> granicus.if.org Git - python/commitdiff
Add versionadded tags missing in r59254. Do NOT merge to Py3k.
authorGeorg Brandl <georg@python.org>
Sat, 1 Dec 2007 13:23:04 +0000 (13:23 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 1 Dec 2007 13:23:04 +0000 (13:23 +0000)
Doc/c-api/concrete.rst

index aad031b4cb2157018e8f700088f598eec72a8d15..713daabda8610c380f4618f6a59bd3e783449655 100644 (file)
@@ -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: