From d7ce6518974f5df461c5423c5cf89054e7bc2cea Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Thu, 29 Jun 2023 11:15:37 -0400 Subject: Implement __repr__ for all basic blocks in the base class --- python/mediumlevelil.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'python/mediumlevelil.py') diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 66bf079e..df5ae4a0 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -3679,13 +3679,6 @@ class MediumLevelILBasicBlock(basicblock.BasicBlock): super(MediumLevelILBasicBlock, self).__init__(handle, view) self._il_function = owner - def __repr__(self): - arch = self.arch - if arch: - return f"" - else: - return f"" - def __iter__(self): for idx in range(self.start, self.end): yield self._il_function[idx] -- cgit v1.3.1