From f336fa97d187890d7ec25973387a9715e67ea813 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 14 Mar 2022 13:56:01 -0400 Subject: add additional documentation warning users from creating objects with handles directly --- python/highlevelil.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/highlevelil.py') 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'] ): -- cgit v1.3.1