summaryrefslogtreecommitdiff
path: root/python/typelibrary.py
diff options
context:
space:
mode:
authorRyan Snyder <ryan@vector35.com>2023-07-18 12:09:21 -0400
committerRyan Snyder <ryan@vector35.com>2023-08-23 20:05:05 -0400
commitb116310afbb1940e2a13a3a2625a9069d7b489b9 (patch)
treece5db8e49d2fda5a783f5a766ed6a9cd13c61840 /python/typelibrary.py
parent37df2e956d3c6b0008b72dfe915d36c63f694e30 (diff)
typelibrary: add methods for dependency info
Diffstat (limited to 'python/typelibrary.py')
-rw-r--r--python/typelibrary.py11
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)
+