mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Patch by Tim Peters fixing PR#89:
long(+/- infinity) returns nonsense.
This commit is contained in:
parent
a840fca155
commit
1a23c2484e
1 changed files with 5 additions and 0 deletions
|
@ -145,6 +145,11 @@ PyLong_FromDouble(dval)
|
|||
double frac;
|
||||
int i, ndig, expo, neg;
|
||||
neg = 0;
|
||||
if (dval && dval * 0.5 == dval) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"cannot convert float infinity to long");
|
||||
return NULL;
|
||||
}
|
||||
if (dval < 0.0) {
|
||||
neg = 1;
|
||||
dval = -dval;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue