(self, ctxt: ctypes.c_void_p, key: ctypes.c_char_p, conflict: core.BNAnalysisMergeConflictHandle)
| 288 | traceback.print_exc(file=sys.stderr) |
| 289 | |
| 290 | def _can_split(self, ctxt: ctypes.c_void_p, key: ctypes.c_char_p, conflict: core.BNAnalysisMergeConflictHandle) -> bool: |
| 291 | try: |
| 292 | py_conflict = MergeConflict(handle=conflict) |
| 293 | return self.can_split(core.pyNativeStr(key), py_conflict) |
| 294 | except: |
| 295 | traceback.print_exc(file=sys.stderr) |
| 296 | return False |
| 297 | |
| 298 | def _split( |
| 299 | self, |
nothing calls this directly
no test coverage detected