[Python-checkins] r59256 - python/trunk/Doc/c-api/concrete.rst

georg.brandl python-checkins at python.org
Sat Dec 1 14:23:04 CET 2007


Author: georg.brandl
Date: Sat Dec  1 14:23:04 2007
New Revision: 59256

Modified:
   python/trunk/Doc/c-api/concrete.rst
Log:
Add versionadded tags missing in r59254. Do NOT merge to Py3k.


Modified: python/trunk/Doc/c-api/concrete.rst
==============================================================================
--- python/trunk/Doc/c-api/concrete.rst	(original)
+++ python/trunk/Doc/c-api/concrete.rst	Sat Dec  1 14:23:04 2007
@@ -563,16 +563,22 @@
    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:
 


More information about the Python-checkins mailing list