summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/function.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py
index c6c8e205..cb8a869c 100644
--- a/python/function.py
+++ b/python/function.py
@@ -3277,6 +3277,17 @@ class Function(object):
self.clear_user_var_value(var, def_site.addr)
def request_debug_report(self, name):
+ """
+ ``request_debug_report`` can generate interanl debug reports for a variety of analysis.
+ Current list of possible values include:
+
+ - mlil_translator
+ - stack_adjust_graph
+ - high_level_il
+
+ :param str name: Name of the debug report
+ :rtype: None
+ """
core.BNRequestFunctionDebugReport(self.handle, name)
self.view.update_analysis()