idautils.py: Clarified the note in Functions()

This commit is contained in:
gergely.erdelyi 2009-07-12 14:35:13 +00:00
parent 700dcef6cd
commit 5cb6044277

View File

@ -198,8 +198,9 @@ def Functions(start=idaapi.cvar.inf.minEA, end=idaapi.cvar.inf.maxEA):
@return: list of heads between start and end @return: list of heads between start and end
@note: The last function that starts before 'end' is included even @note: The last function that starts before 'end' is included even
if it extends beyond 'end'. Any function that has its chunks in if it extends beyond 'end'. Any function that has its chunks scattered
multiple segments will be reported multiple times. in multiple segments will be reported multiple times, once in each segment
as they are listed.
""" """
func = idaapi.get_func(start) func = idaapi.get_func(start)
if not func: if not func: