External namespace for the current BinaryView
()
| 3287 | |
| 3288 | @staticmethod |
| 3289 | def external_namespace() -> '_types.NameSpace': |
| 3290 | """External namespace for the current BinaryView""" |
| 3291 | ns = core.BNGetExternalNameSpace() |
| 3292 | try: |
| 3293 | return _types.NameSpace._from_core_struct(ns) |
| 3294 | finally: |
| 3295 | core.BNFreeNameSpace(ns) |
| 3296 | |
| 3297 | @property |
| 3298 | def namespaces(self) -> List['_types.NameSpace']: |
nothing calls this directly
no test coverage detected