Searched refs:call_str (Results 1 – 3 of 3) sorted by relevance
18 call_str = '{}({})'.format(function.func_name, arg_str)23 print('{}: Calling {}'.format(label, call_str))26 print('{}: {} -> {}'.format(label, call_str, res))30 print('{}: {} raised {}'.format(label, call_str, type(ex)))
60 def get_func_and_args_from_str(call_str): argument70 open_paren_index = six.ensure_str(call_str).find("(")71 close_paren_index = call_str.rfind(")")73 function_name = call_str[:six.ensure_str(call_str).find("(")]74 args = six.ensure_str(call_str[open_paren_index +
5602 static PyObject *call_str; local5603 PyObject *meth = lookup_method(self, "__call__", &call_str);