Method
__init__
(self, instance, value, optimistic=True)
Source from the content-addressed store, hash-verified
| 36 | |
| 37 | class FunctionResult(Result): |
| 38 | def __init__(self, instance, value, optimistic=True): |
| 39 | super(FunctionResult, self).__init__(instance, opt_index=0, call_index=0, optimistic=optimistic) |
| 40 | self.instance = instance |
| 41 | self.value = value |
| 42 | self._certified = None |
| 43 | # TODO: could add empty output_objects tuple |
| 44 | @property |
| 45 | def certified(self): |
| 46 | if self._certified is None: |
Callers
nothing calls this directly
Tested by
no test coverage detected