summaryrefslogtreecommitdiff
path: root/python/types.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2025-06-24 09:20:34 -0400
committerPeter LaFosse <peter@vector35.com>2025-06-24 09:20:34 -0400
commit799e3c7a23d5f7dea70ebbe7e7ad971bcd0ae155 (patch)
tree95fc9d953cce2fb5f2808b24200b3ae6435c7ede /python/types.py
parentf59acf14a8a8630a5b9a0e0cb422a1192f247f5d (diff)
Add comment on Pointer.offset being useless
Diffstat (limited to 'python/types.py')
-rw-r--r--python/types.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/types.py b/python/types.py
index de3e707f..325ea12e 100644
--- a/python/types.py
+++ b/python/types.py
@@ -949,6 +949,7 @@ class PointerBuilder(TypeBuilder):
@property
def offset(self) -> int:
+ """ Currently not used and has no effect (Leaving this in for compatibility)""""
return core.BNGetTypeBuilderOffset(self._handle)
@offset.setter