Fix incorrect documentation for the Py_IS_FINITE(X) macro.

This commit is contained in:
Kristján Valur Jónsson 2006-05-25 16:39:27 +00:00
parent cc1ecf4d6d
commit 44aa9f7139
1 changed files with 3 additions and 3 deletions

View File

@ -295,9 +295,9 @@ extern "C" {
#define Py_IS_INFINITY(X) ((X) && (X)*0.5 == (X))
#endif
/* Py_IS_INFINITY(X)
* Return 1 if float or double arg is an infinity, else 0.
* Some architectures (Windows) have intrinsics for this, so a special
/* Py_IS_FINITE(X)
* Return 1 if float or double arg is neither infinite nor NAN, else 0.
* Some compilers (e.g. VisualStudio) have intrisics for this, so a special
* macro for this particular test is useful
*/
#ifndef Py_IS_FINITE