Revision: 16283
Author: [email protected]
Date: Fri Aug 23 08:17:54 2013 UTC
Log: grokdump: fix Oddball printing
[email protected]
Review URL: https://codereview.chromium.org/22852021
http://code.google.com/p/v8/source/detail?r=16283
Modified:
/branches/bleeding_edge/tools/grokdump.py
=======================================
--- /branches/bleeding_edge/tools/grokdump.py Wed Aug 7 08:57:25 2013 UTC
+++ /branches/bleeding_edge/tools/grokdump.py Fri Aug 23 08:17:54 2013 UTC
@@ -1138,7 +1138,7 @@
def __str__(self):
if self.to_string:
- return "Oddball(%08x, <%s>)" % (self.address,
self.to_string.GetChars())
+ return "Oddball(%08x, <%s>)" % (self.address, str(self.to_string))
else:
kind = "???"
if 0 <= self.kind < len(Oddball.KINDS):
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.