Commit 139e57b2 authored by Guido van Rossum's avatar Guido van Rossum

Support for long integers

parent 1492c273
......@@ -410,6 +410,10 @@ getdoublearg(args, px)
*px = getintvalue(args);
return 1;
}
if (is_longobject(args)) {
*px = dgetlongvalue(args);
return 1;
}
return err_badarg();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment