diff options
| author | Peter LaFosse <peter@vector35.com> | 2019-10-15 09:24:50 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2019-10-15 09:25:05 -0400 |
| commit | 16e302df4a6c762af67a8b0453aa42d591421ed6 (patch) | |
| tree | 87610a4192a7d2a379cfb2dbca2926f7f0360a7e /python | |
| parent | b805aaf2ece37ef9ebb109b48c90ef1989d16d66 (diff) | |
Expose Segment auto_defined property
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 9c67b097..3f69c7d3 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -813,6 +813,10 @@ class Segment(object): return core.BNSegmentGetRelocationsCount(self.handle) @property + def auto_defined(self): + return core.BNSegmentIsAutoDefined(self.handle) + + @property def relocation_ranges(self): """List of relocation range tuples (read-only)""" |
