summaryrefslogtreecommitdiff
path: root/python/types.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2018-07-31 15:45:02 -0400
committerPeter LaFosse <peter@vector35.com>2018-07-31 15:45:02 -0400
commit454bcf8314833269ae8be9111b2c1035fe8999d6 (patch)
tree142960a5296dfc95247f76e7da9ab83c40ece142 /python/types.py
parentca66a9882727821169536f8cdc8e2108492ea191 (diff)
removing ability to set autodefined
Diffstat (limited to 'python/types.py')
-rw-r--r--python/types.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/python/types.py b/python/types.py
index 42ed7ddd..a81cf5f0 100644
--- a/python/types.py
+++ b/python/types.py
@@ -185,10 +185,6 @@ class Symbol(object):
def auto(self):
return core.BNIsSymbolAutoDefined(self.handle)
- @auto.setter
- def auto(self, value):
- core.BNSetSymbolAutoDefined(self.handle, value)
-
def __repr__(self):
return "<%s: \"%s\" @ %#x>" % (self.type, self.full_name, self.address)