``core_version`` returns a string containing the current version :return: current version :rtype: str, or None on failure
()
| 297 | |
| 298 | |
| 299 | def core_version() -> Optional[str]: |
| 300 | """ |
| 301 | ``core_version`` returns a string containing the current version |
| 302 | |
| 303 | :return: current version |
| 304 | :rtype: str, or None on failure |
| 305 | """ |
| 306 | return core.BNGetVersionString() |
| 307 | |
| 308 | def core_version_info() -> CoreVersionInfo: |
| 309 | """ |