Searched refs:newarg (Results 1 – 8 of 8) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_random.py | 542 def __init__(self, newarg=None): argument 544 Subclass(newarg=1)
|
D | test_deque.py | 646 def __init__(self, newarg=1): argument 652 SubclassWithKwargs(newarg=1)
|
D | test_array.py | 16 def __init__(self, typecode, newarg=None): argument 786 ArraySubclassWithKwargs('b', newarg=1)
|
D | test_bytes.py | 1101 def __init__(self, newarg=1, *args, **kwargs): argument 1105 x = subclass(newarg=4, source=b"abcd")
|
D | test_itertools.py | 1392 def __init__(self, newarg=None, *args): argument 1395 Subclass(newarg=1)
|
D | test_set.py | 576 def __init__(self, iterable=[], newarg=None): argument 583 SetSubclassWithKeywordArgs(newarg=1)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | classobject.c | 2565 PyObject *newarg = PyTuple_New(argcount + 1); in instancemethod_call() local 2567 if (newarg == NULL) in instancemethod_call() 2570 PyTuple_SET_ITEM(newarg, 0, self); in instancemethod_call() 2574 PyTuple_SET_ITEM(newarg, i+1, v); in instancemethod_call() 2576 arg = newarg; in instancemethod_call()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | classobject.c | 2589 PyObject *newarg = PyTuple_New(argcount + 1); in instancemethod_call() local 2591 if (newarg == NULL) in instancemethod_call() 2594 PyTuple_SET_ITEM(newarg, 0, self); in instancemethod_call() 2598 PyTuple_SET_ITEM(newarg, i+1, v); in instancemethod_call() 2600 arg = newarg; in instancemethod_call()
|