Home
last modified time | relevance | path

Searched refs:getargs_keywords (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_getargs2.py8 from _testcapi import getargs_keywords, getargs_keyword_only
533 getargs_keywords((1,2), 3, (4,(5,6)), (7,8,9), 10),
540 getargs_keywords((1,2), 3, (4,(5,6)), arg4=(7,8,9), arg5=10),
547 getargs_keywords(arg1=(1,2), arg2=3, arg3=(4,(5,6)), arg4=(7,8,9), arg5=10),
554 getargs_keywords(arg1=(1,2), arg2=3, arg5=10),
561 getargs_keywords(arg1=(1,2))
570 getargs_keywords((1,2),3,(4,(5,6)),(7,8,9),10,111)
579 getargs_keywords((1,2),3,arg5=10,arg666=666)
587 getargs_keywords((1,2), 3, (4,(5,6)), (7,8,9), **{'\uDC80': 10})
/external/python/cpython2/Lib/test/
Dtest_getargs2.py8 from _testcapi import getargs_keywords
475 getargs_keywords((1,2), 3, (4,(5,6)), (7,8,9), 10),
481 getargs_keywords((1,2), 3, (4,(5,6)), arg4=(7,8,9), arg5=10),
487 getargs_keywords(arg1=(1,2), arg2=3, arg3=(4,(5,6)), arg4=(7,8,9), arg5=10),
493 getargs_keywords(arg1=(1,2), arg2=3, arg5=10),
499 getargs_keywords(arg1=(1,2))
506 getargs_keywords((1,2),3,(4,(5,6)),(7,8,9),10,111)
514 getargs_keywords((1,2),3,arg5=10,arg666=666)
/external/python/cpython2/Modules/
D_testcapimodule.c1066 static PyObject *getargs_keywords(PyObject *self, PyObject *args, PyObject *kwargs) in getargs_keywords() function
2701 {"getargs_keywords", (PyCFunction)getargs_keywords,
/external/python/cpython3/Modules/
D_testcapimodule.c1017 getargs_keywords(PyObject *self, PyObject *args, PyObject *kwargs) in getargs_keywords() function
4629 {"getargs_keywords", (PyCFunction)getargs_keywords,