From e51eb69e3a7021de0aac2cd4c19107a57c80c4da Mon Sep 17 00:00:00 2001 From: "gergely.erdelyi" Date: Sun, 13 Sep 2009 17:37:43 +0000 Subject: [PATCH] idautils.py: Small docstring formatting fixes. --- python/idautils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/idautils.py b/python/idautils.py index ef44c8f..3c6e984 100644 --- a/python/idautils.py +++ b/python/idautils.py @@ -140,7 +140,7 @@ def XrefsFrom(ea, flags=0): @param ea: Reference address @param flags: any of idaapi.XREF_* flags - Example: + Example:: for xref in XrefsFrom(here(), 0): print xref.type, XrefTypeName(xref.type), \ 'from', hex(xref.frm), 'to', hex(xref.to) @@ -159,7 +159,7 @@ def XrefsTo(ea, flags=0): @param ea: Reference address @param flags: any of idaapi.XREF_* flags - Example: + Example:: for xref in XrefsTo(here(), 0): print xref.type, XrefTypeName(xref.type), \ 'from', hex(xref.frm), 'to', hex(xref.to)