tools: prepare ./tools/compress_json.py for Python 3

PR-URL: https://github.com/nodejs/node/pull/24889
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
pull/23683/head
cclauss 2018-12-07 10:10:55 +01:00 committed by Rich Trott
parent 5906530834
commit ad7ddfbca1
1 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,12 @@ import struct
import sys
import zlib
try:
xrange # Python 2
except NameError:
xrange = range # Python 3
if __name__ == '__main__':
fp = open(sys.argv[1])
obj = json.load(fp)