From be5901611829ea635053db4a3482cb122735e013 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Sat, 28 Jun 2025 15:23:06 -0400 Subject: Python: Update IL Function repr()s --- python/highlevelil.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'python/highlevelil.py') diff --git a/python/highlevelil.py b/python/highlevelil.py index 1ac81617..6398bc26 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -2552,10 +2552,13 @@ class HighLevelILFunction: def __repr__(self): arch = self.source_function.arch + form = "" + if self.il_form == FunctionGraphType.HighLevelILSSAFormFunctionGraph: + form += " ssa form" if arch: - return "" % (arch.name, self.source_function.start) + return f"" else: - return "" % self.source_function.start + return f"" def __eq__(self, other): if not isinstance(other, self.__class__): -- cgit v1.3.1