Architecture standalone platform (read-only)
(self)
| 565 | |
| 566 | @property |
| 567 | def standalone_platform(self) -> 'platform.Platform': |
| 568 | """Architecture standalone platform (read-only)""" |
| 569 | pl = core.BNGetArchitectureStandalonePlatform(self.handle) |
| 570 | return platform.CorePlatform._from_cache(pl) |
| 571 | |
| 572 | @property |
| 573 | def type_libraries(self) -> List['typelibrary.TypeLibrary']: |
no test coverage detected