(self, function, *args, **kwargs)
| 33 | |
| 34 | class compile_wrap: |
| 35 | def __init__(self, function, *args, **kwargs): |
| 36 | self.function = function |
| 37 | self.args = args |
| 38 | self.kwargs = kwargs |
| 39 | self._compiled_function = None |
| 40 | update_wrapper(self, function) |
| 41 | |
| 42 | @property |
| 43 | def compiled_function(self): |
nothing calls this directly
no outgoing calls
no test coverage detected