From 5cb60442773c1bb5a42e24e25cb0fb43c8e526b7 Mon Sep 17 00:00:00 2001 From: "gergely.erdelyi" Date: Sun, 12 Jul 2009 14:35:13 +0000 Subject: [PATCH] idautils.py: Clarified the note in Functions() --- python/idautils.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/idautils.py b/python/idautils.py index 1af91cd..cee82c1 100644 --- a/python/idautils.py +++ b/python/idautils.py @@ -198,8 +198,9 @@ def Functions(start=idaapi.cvar.inf.minEA, end=idaapi.cvar.inf.maxEA): @return: list of heads between start and end @note: The last function that starts before 'end' is included even - if it extends beyond 'end'. Any function that has its chunks in - multiple segments will be reported multiple times. + if it extends beyond 'end'. Any function that has its chunks scattered + in multiple segments will be reported multiple times, once in each segment + as they are listed. """ func = idaapi.get_func(start) if not func: