Internal namespace for the current BinaryView
()
| 3278 | |
| 3279 | @staticmethod |
| 3280 | def internal_namespace() -> '_types.NameSpace': |
| 3281 | """Internal namespace for the current BinaryView""" |
| 3282 | ns = core.BNGetInternalNameSpace() |
| 3283 | try: |
| 3284 | return _types.NameSpace._from_core_struct(ns) |
| 3285 | finally: |
| 3286 | core.BNFreeNameSpace(ns) |
| 3287 | |
| 3288 | @staticmethod |
| 3289 | def external_namespace() -> '_types.NameSpace': |
nothing calls this directly
no test coverage detected