Commit d7a04558 authored by Ng Zhi An's avatar Ng Zhi An Committed by Commit Bot

[Py3] Get blink_gc_plugin Py3 ready

Proper fix for process-graph.py (changes were reverted in
https://crrev.com/c/2266652).

Bug: chromium:941669
Change-Id: I38242be26371246a33a88630a1480ce8446b7680
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2267737
Commit-Queue: Zhi An Ng <zhin@chromium.org>
Reviewed-by: default avatarHans Wennborg <hans@chromium.org>
Cr-Commit-Position: refs/heads/master@{#783094}
parent 284baa01
......@@ -4,9 +4,13 @@
# found in the LICENSE file.
from __future__ import print_function
from StringIO import StringIO
import argparse, os, sys, json, subprocess, pickle
try:
from StringIO import StringIO # Python 2
except:
from io import StringIO
parser = argparse.ArgumentParser(
description =
"Process the Blink points-to graph generated by the Blink GC plugin.")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment