summaryrefslogtreecommitdiff
path: root/python/platform.py
diff options
context:
space:
mode:
authorRyan Snyder <ryan@vector35.com>2019-09-13 21:08:25 -0400
committerRyan Snyder <ryan@vector35.com>2019-09-24 10:42:26 -0400
commitca2d870a3aac0b2154b06f3ab075ca22bd0a0596 (patch)
treef2e56d17914d4412737f788959ab1ecc6531bfd9 /python/platform.py
parentc5bd94376017e9d9d98a4dba2fac6b49572cda6d (diff)
typelibrary: more consistent naming, type exports
Diffstat (limited to 'python/platform.py')
-rw-r--r--python/platform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/platform.py b/python/platform.py
index 2d061172..2091e1d1 100644
--- a/python/platform.py
+++ b/python/platform.py
@@ -296,7 +296,7 @@ class Platform(with_metaclass(_PlatformMetaClass, object)):
core.BNFreeTypeLibraryList(libs, count.value)
return result
- def type_libraries_by_name(self, name):
+ def get_type_libraries_by_name(self, name):
count = ctypes.c_ulonglong(0)
libs = core.BNGetPlatformTypeLibrariesByName(self.handle, name, count)
result = []