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/lowlevelil.py | |
| parent | 2da52de594c47ba5427806a98d70ebaf09216a33 (diff) | |
add additional documentation warning users from creating objects with handles directly
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 22ea1e64..faba03fe 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -4699,6 +4699,9 @@ class LowLevelILFunction: class LowLevelILBasicBlock(basicblock.BasicBlock): + """ + The ``LogLevelILBasicBlock`` object is returned during analysis and should not be directly instantiated. + """ def __init__( self, handle: core.BNBasicBlockHandle, owner: LowLevelILFunction, view: Optional['binaryview.BinaryView'] ): |
