diff options
author | Georg Brandl <georg@python.org> | 2007-12-01 13:23:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-01 13:23:04 (GMT) |
commit | 861320d5a757ffb9a7b392a99e68dce3f61aebf8 (patch) | |
tree | ddfc2914174c3ee70df89a08ec439755aec110e2 /Doc/c-api | |
parent | dfdfaab1c54425113e07b623f7dc38f60762cee1 (diff) | |
download | cpython-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.rst | 6 |
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: |