idautils.py: Small docstring formatting fixes.

This commit is contained in:
gergely.erdelyi 2009-09-13 17:37:43 +00:00
parent 5e93f49c97
commit e51eb69e3a

View File

@ -140,7 +140,7 @@ def XrefsFrom(ea, flags=0):
@param ea: Reference address @param ea: Reference address
@param flags: any of idaapi.XREF_* flags @param flags: any of idaapi.XREF_* flags
Example: Example::
for xref in XrefsFrom(here(), 0): for xref in XrefsFrom(here(), 0):
print xref.type, XrefTypeName(xref.type), \ print xref.type, XrefTypeName(xref.type), \
'from', hex(xref.frm), 'to', hex(xref.to) 'from', hex(xref.frm), 'to', hex(xref.to)
@ -159,7 +159,7 @@ def XrefsTo(ea, flags=0):
@param ea: Reference address @param ea: Reference address
@param flags: any of idaapi.XREF_* flags @param flags: any of idaapi.XREF_* flags
Example: Example::
for xref in XrefsTo(here(), 0): for xref in XrefsTo(here(), 0):
print xref.type, XrefTypeName(xref.type), \ print xref.type, XrefTypeName(xref.type), \
'from', hex(xref.frm), 'to', hex(xref.to) 'from', hex(xref.frm), 'to', hex(xref.to)