python/retrace: Keep addresses as strings.

To simplify looking up these in the trace.
This commit is contained in:
José Fonseca
2008-08-14 14:40:27 +01:00
parent 4fffc9d63f
commit 14fe0d62ee
2 changed files with 1 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ class Pointer(Node):
visitor.visit_pointer(self)
def __str__(self):
return hex(self.address)
return self.address
class Call: