summaryrefslogtreecommitdiff
path: root/python/architecture.py
diff options
context:
space:
mode:
authornegasora <negasora@gmail.com>2018-06-11 19:03:18 -0400
committernegasora <negasora@gmail.com>2018-06-11 19:03:18 -0400
commit3b433195716732f63f352730d481a0a9415639a1 (patch)
tree5577db4c114c81e395767f835818bc79a1976e08 /python/architecture.py
parent89248d9bdcf24e5ba4e49ae9871161648fd2d5a0 (diff)
Add empty list properties to some classes to allow for visibility
Diffstat (limited to 'python/architecture.py')
-rw-r--r--python/architecture.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/architecture.py b/python/architecture.py
index c5f87ec6..df22da7f 100644
--- a/python/architecture.py
+++ b/python/architecture.py
@@ -392,6 +392,11 @@ class Architecture(object):
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 full_width_regs(self):
"""List of full width register strings (read-only)"""
count = ctypes.c_ulonglong()