summaryrefslogtreecommitdiff
path: root/deps/v8/tools/trace-maps-processor.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/trace-maps-processor.py')
-rwxr-xr-xdeps/v8/tools/trace-maps-processor.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/tools/trace-maps-processor.py b/deps/v8/tools/trace-maps-processor.py
index bf8c8a8c92..4a29eab5db 100755
--- a/deps/v8/tools/trace-maps-processor.py
+++ b/deps/v8/tools/trace-maps-processor.py
@@ -3,6 +3,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+# for py2/py3 compatibility
+from __future__ import print_function
+
import sys
@@ -169,4 +172,4 @@ elif action == "count":
reasons_list.append("%8d %s" % (reasons[r], r))
reasons_list.sort(reverse=True)
for r in reasons_list[:20]:
- print r
+ print(r)