diff options
| author | Ryan Snyder <ryan@vector35.com> | 2023-07-18 12:09:21 -0400 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2023-08-23 20:05:05 -0400 |
| commit | b116310afbb1940e2a13a3a2625a9069d7b489b9 (patch) | |
| tree | ce5db8e49d2fda5a783f5a766ed6a9cd13c61840 /python/typelibrary.py | |
| parent | 37df2e956d3c6b0008b72dfe915d36c63f694e30 (diff) | |
typelibrary: add methods for dependency info
Diffstat (limited to 'python/typelibrary.py')
| -rw-r--r-- | python/typelibrary.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/python/typelibrary.py b/python/typelibrary.py index eff60781..53f3e8ef 100644 --- a/python/typelibrary.py +++ b/python/typelibrary.py @@ -66,16 +66,6 @@ class TypeLibrary: return core.BNTypeLibraryDecompressToFile(path, output) @staticmethod - def decompress(path: str) -> str: - """ - Decompresses a type library file to a string. - - :param str path: - :rtype: str - """ - return core.BNTypeLibraryDecompressToString(path) - - @staticmethod def load_from_file(path: str) -> Optional['TypeLibrary']: """ Loads a finalized type library instance from file @@ -407,3 +397,4 @@ class TypeLibrary: return result finally: core.BNFreeQualifiedNameAndTypeArray(named_types, count.value) + |
