diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-03-14 13:56:01 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2022-03-14 13:56:01 -0400 |
| commit | f336fa97d187890d7ec25973387a9715e67ea813 (patch) | |
| tree | bf64fce6bcac28395124d62854d3aaf7ceb8ae57 /python/highlevelil.py | |
| parent | 2da52de594c47ba5427806a98d70ebaf09216a33 (diff) | |
add additional documentation warning users from creating objects with handles directly
Diffstat (limited to 'python/highlevelil.py')
| -rw-r--r-- | python/highlevelil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py index 176b2994..c77a4e39 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -2527,6 +2527,9 @@ class HighLevelILFunction: class HighLevelILBasicBlock(basicblock.BasicBlock): + """ + The ``HighLevelILBasicBlock`` object is returned during analysis and should not be directly instantiated. + """ def __init__( self, handle: core.BNBasicBlockHandle, owner: HighLevelILFunction, view: Optional['binaryview.BinaryView'] ): |
