(self)
| 11 | INT4 = 3 |
| 12 | |
| 13 | def __init__(self): |
| 14 | self.h = _lib.cactus_graph_create() |
| 15 | if not self.h: |
| 16 | raise RuntimeError("cactus_graph_create failed") |
| 17 | |
| 18 | def save(self, filename): |
| 19 | rc = _lib.cactus_graph_save(self.h, str(filename).encode()) |
nothing calls this directly
no outgoing calls
no test coverage detected