Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_getargs2.py3 from _testcapi import getargs_keywords
279 getargs_keywords((1,2), 3, (4,(5,6)), (7,8,9), 10),
285 getargs_keywords((1,2), 3, (4,(5,6)), arg4=(7,8,9), arg5=10),
291 getargs_keywords(arg1=(1,2), arg2=3, arg3=(4,(5,6)), arg4=(7,8,9), arg5=10),
297 getargs_keywords(arg1=(1,2), arg2=3, arg5=10),
303 getargs_keywords(arg1=(1,2))
310 getargs_keywords((1,2),3,(4,(5,6)),(7,8,9),10,111)
318 getargs_keywords((1,2),3,arg5=10,arg666=666)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_testcapimodule.c844 static PyObject *getargs_keywords(PyObject *self, PyObject *args, PyObject *kwargs) in getargs_keywords() function
1662 {"getargs_keywords", (PyCFunction)getargs_keywords,