Home
last modified time | relevance | path

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

/external/autotest/client/common_lib/cros/fake_device_server/
Dcommon_util.py48 def parse_common_args(args_tuple, kwargs, supported_operations=set()): argument
72 args = list(args_tuple)
/external/python/cpython2/Python/
Dcodecs.c180 PyObject *args_tuple(PyObject *object, in args_tuple() function
351 args = args_tuple(object, errors); in _PyCodec_EncodeInternal()
395 args = args_tuple(object, errors); in _PyCodec_DecodeInternal()
/external/python/cpython2/Lib/test/
Dregrtest.py509 args_tuple = (
514 yield (test, args_tuple)
526 test, args_tuple = next(pending)
531 popen = Popen(base_cmd + ['--slaveargs', json.dumps(args_tuple)],
/external/python/cpython2/Objects/
Dexceptions.c2195 PyObject *args_tuple; in _PyExc_Init() local
2201 args_tuple = PyTuple_Pack(1, exc_message); in _PyExc_Init()
2202 if (!args_tuple) in _PyExc_Init()
2206 if (BaseException_init(err_inst, args_tuple, NULL)) in _PyExc_Init()
2208 Py_DECREF(args_tuple); in _PyExc_Init()