summaryrefslogtreecommitdiff
path: root/python/examples/debug_info.py
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2022-09-28 18:21:13 -0400
committerKyleMiles <krm504@nyu.edu>2022-10-04 15:36:26 -0400
commit3104042adab833e73a71738f57070ab881ade615 (patch)
tree4e5280c162a3f681dab5be6c15dba749d5c30115 /python/examples/debug_info.py
parented820d2ab81470b3e5ac543d75211e87ff3bc738 (diff)
Rename and move `Analysis/Database Merge Tool` to `File/Merge Databases`; Add API bindings for `BinaryView::GetDebugInfo()`, `BinaryView::ApplyDebugInfo()`, and `BinaryView::SetDebugInfo()`; Remove `analysis.experimental.parseDebugInfo`
(in favor of `loader.debugInfoInternal` and `loader.debugInfoExternal`)
Diffstat (limited to 'python/examples/debug_info.py')
-rwxr-xr-xpython/examples/debug_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/debug_info.py b/python/examples/debug_info.py
index 28175ba1..0dd25786 100755
--- a/python/examples/debug_info.py
+++ b/python/examples/debug_info.py
@@ -222,7 +222,7 @@ for p in bn.debuginfo.DebugInfoParser:
print(f" {bn.debuginfo.DebugInfoParser[p.name].name}")
# Test calling our `is_valid` callback
-bv = bn.open_view(filename, options={"analysis.experimental.parseDebugInfo": False})
+bv = bn.open_view(filename, options={"loader.debugInfoInternal": False})
if parser.is_valid_for_view(bv):
print("Parser is valid")
else: