(self)
| 477 | '${result}') > 1 |
| 478 | |
| 479 | def get_cfunction(self) -> CFunction: |
| 480 | if self.cfunction: |
| 481 | return self.cfunction |
| 482 | raise Exception( |
| 483 | "self.cfunction is None: self.update() needs to be called.") |
| 484 | |
| 485 | def create_cfunction(self) -> None: |
| 486 | self.cfunction = CFunction(self.name) |
no outgoing calls
no test coverage detected