commit | c4352b061a6d6cb35c4364ccfb827ff6c2715553 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Fri May 09 13:55:01 2008 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Fri May 09 13:55:01 2008 +0000 |
tree | dc38653d91a3f131707fc020c50fa18900fd9f4c | |
parent | b27406c03e662ee33c8d5f48a7478bac93decee8 [diff] |
Issue 2801: fix bug in float.is_integer where ValueError was incorrectly raised.
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index a748abb..76a5c2c 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c
@@ -900,6 +900,7 @@ return NULL; if (!Py_IS_FINITE(x)) Py_RETURN_FALSE; + errno = 0; PyFPE_START_PROTECT("is_integer", return NULL) o = (floor(x) == x) ? Py_True : Py_False; PyFPE_END_PROTECT(x)