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 rvagg committed Feb 28, 2019
1 parent 52844fa commit ea50080
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 zlib

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


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

0 comments on commit ea50080

Please sign in to comment.