mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
getlonglongargs --> getlonglongarg
Added getlongobjectarg.
This commit is contained in:
parent
18a372f04c
commit
c5da350310
1 changed files with 20 additions and 2 deletions
|
@ -123,7 +123,7 @@ getlongarg(v, a)
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
getlonglongargs(v, a, b)
|
getlonglongarg(v, a, b)
|
||||||
object *v;
|
object *v;
|
||||||
long *a, *b;
|
long *a, *b;
|
||||||
{
|
{
|
||||||
|
@ -135,7 +135,25 @@ getlonglongargs(v, a, b)
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
getlonglongobjectargs(v, a, b, c)
|
getlongobjectarg(v, a, b)
|
||||||
|
object *v;
|
||||||
|
long *a;
|
||||||
|
object **b;
|
||||||
|
{
|
||||||
|
if (v == NULL || !is_tupleobject(v) || gettuplesize(v) != 2) {
|
||||||
|
return err_badarg();
|
||||||
|
}
|
||||||
|
if (getlongarg(gettupleitem(v, 0), a)) {
|
||||||
|
*b = gettupleitem(v, 1);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return err_badarg();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
getlonglongobjectarg(v, a, b, c)
|
||||||
object *v;
|
object *v;
|
||||||
long *a, *b;
|
long *a, *b;
|
||||||
object **c;
|
object **c;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue