Skip to content

Commit

Permalink
tools: prepare ./tools/compress_json.py for Python 3
Browse files Browse the repository at this point in the history
PR-URL: #24889
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
  • Loading branch information
cclauss authored and Trott committed Dec 11, 2018
1 parent 5906530 commit ad7ddfb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/compress_json.py
Expand Up @@ -5,6 +5,12 @@
import sys import sys
import zlib import zlib


try:
xrange # Python 2
except NameError:
xrange = range # Python 3


if __name__ == '__main__': if __name__ == '__main__':
fp = open(sys.argv[1]) fp = open(sys.argv[1])
obj = json.load(fp) obj = json.load(fp)
Expand Down

0 comments on commit ad7ddfb

Please sign in to comment.