idautils.py: Added notes about Functions()'s behaviour when a function has chunks in multiple segments

This commit is contained in:
gergely.erdelyi 2009-07-12 14:31:03 +00:00
parent b5f3edf5fc
commit 700dcef6cd

View File

@ -198,7 +198,8 @@ 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'.
if it extends beyond 'end'. Any function that has its chunks in
multiple segments will be reported multiple times.
"""
func = idaapi.get_func(start)
if not func: