mirror of https://github.com/python/cpython.git
Support for long integers
This commit is contained in:
parent
1492c27350
commit
139e57b2a4
|
@ -410,6 +410,10 @@ getdoublearg(args, px)
|
|||
*px = getintvalue(args);
|
||||
return 1;
|
||||
}
|
||||
if (is_longobject(args)) {
|
||||
*px = dgetlongvalue(args);
|
||||
return 1;
|
||||
}
|
||||
return err_badarg();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue