diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/__init__.py b/python/__init__.py index 90f1bcf6..f9f8b2cb 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -190,6 +190,7 @@ class CoreVersionInfo: def get_unique_identifier(): """ Generate a GUID + :return: A GUID string """ return core.BNGetUniqueIdentifierString() @@ -377,6 +378,7 @@ def core_set_license(licenseData: str) -> None: def get_memory_usage_info() -> Mapping[str, int]: """ Get counts of various Binary Ninja objects in memory. + :return: Dictionary of {class name: count} for objects in memory """ count = ctypes.c_ulonglong() |
