(cls, func: 'core.BNFunction')
| 504 | |
| 505 | @classmethod |
| 506 | def _unregister(cls, func: 'core.BNFunction') -> None: |
| 507 | handle = ctypes.cast(func, ctypes.c_void_p) |
| 508 | if handle.value in cls._associated_data: |
| 509 | del cls._associated_data[handle.value] |
| 510 | |
| 511 | @staticmethod |
| 512 | def set_default_session_data(name: str, value) -> None: |
no outgoing calls
no test coverage detected