mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
Update doc
This commit is contained in:
@@ -27,13 +27,15 @@ void init_utils_functions(py::module& m) {
|
||||
auto&& InteractiveShellEmbed = py::module::import("IPython").attr("terminal").attr("embed").attr("InteractiveShellEmbed");
|
||||
auto&& ipshell = InteractiveShellEmbed("banner1"_a = "Dropping into IPython", "exit_msg"_a = "Leaving Interpreter, back to program.");
|
||||
return ipshell();
|
||||
});
|
||||
},
|
||||
"Drop into an IPython Interpreter");
|
||||
|
||||
m.def("breakp",
|
||||
[] (void) {
|
||||
py::object set_trace = py::module::import("pdb").attr("set_trace");
|
||||
return set_trace();
|
||||
});
|
||||
},
|
||||
"Trigger 'pdb.set_trace()'");
|
||||
|
||||
#if defined(LIEF_PE_MODULE)
|
||||
m.def("is_pe",
|
||||
|
||||
Reference in New Issue
Block a user