summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index 0cf25e70..80298304 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -341,6 +341,10 @@ class BinaryViewType(object):
if not isinstance(value, BinaryViewType):
return True
return ctypes.addressof(self.handle.contents) != ctypes.addressof(value.handle.contents)
+ @property
+ def list(self):
+ """Allow tab completion to discover metaclass list property"""
+ pass
@property
def name(self):