diff options
| author | KyleMiles <krm504@nyu.edu> | 2023-06-29 20:49:26 -0400 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2023-07-10 12:58:24 -0400 |
| commit | 04bc6f11ae0289aae57d63d4cd32f4ef305d1a7a (patch) | |
| tree | 46f06280b13fb80f2aebf0eea9b52f884e698d0c /python/function.py | |
| parent | 7598688466960427890036590239565364310171 (diff) | |
Move binary view loading in to the core; deprecate open_view in favor of load; update examples
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py index 97655e41..5df6f62a 100644 --- a/python/function.py +++ b/python/function.py @@ -337,7 +337,7 @@ class Function: The examples in the following code will use the following variables >>> from binaryninja import * - >>> bv = binaryninja.binaryview.BinaryViewType.get_view_of_file("/bin/ls") + >>> bv = load("/bin/ls") >>> current_function = bv.functions[0] >>> here = current_function.start """ |
