Lines Matching refs:result
90 kind, result = c.recv()
92 return result
93 raise convert_to_error(kind, result)
95 def convert_to_error(kind, result):
97 return result
99 if not isinstance(result, str):
102 result, kind, type(result)))
104 return RemoteError('Unserializable message: %s\n' % result)
106 return RemoteError(result)
209 result = func(c, *args, **kwds)
213 msg = ('#RETURN', result)
291 result = fallback_func(
294 msg = ('#RETURN', result)
343 result = []
348 result.append(' %s: refcount=%s\n %s' %
351 return '\n'.join(result)
811 Try to call a method of the referent and return a copy of the result
822 kind, result = conn.recv()
825 return result
827 exposed, token = result
837 raise convert_to_error(kind, result)
1070 result = predicate()
1071 if result:
1072 return result
1078 while not result:
1084 result = predicate()
1085 return result