]> Git Repo - qemu.git/commitdiff
python: futurize -f lib2to3.fixes.fix_renames
authorEduardo Habkost <[email protected]>
Fri, 8 Jun 2018 12:29:50 +0000 (09:29 -0300)
committerEduardo Habkost <[email protected]>
Fri, 8 Jun 2018 17:39:24 +0000 (14:39 -0300)
Change sys.maxint to sys.maxsize.

This is necessary for Python 3 compatibility.

Done using:

  $ py=$( (g grep -l -E '^#!.*python';find -name '*.py' -printf '%P\n';) | \
    sort -u | grep -v README.sh4)
  $ futurize -w -f lib2to3.fixes.fix_renames $py

Reviewed-by: Stefan Hajnoczi <[email protected]>
Signed-off-by: Eduardo Habkost <[email protected]>
Message-Id: <20180608122952[email protected]>
Signed-off-by: Eduardo Habkost <[email protected]>
tests/image-fuzzer/runner.py

index 45e8fca63f4b586c12a0546df752c29cd16aff32..95d84f38f379f24003ed1ab5fcf864f908603824 100755 (executable)
@@ -128,7 +128,7 @@ class TestEnv(object):
         if seed is not None:
             self.seed = seed
         else:
-            self.seed = str(random.randint(0, sys.maxint))
+            self.seed = str(random.randint(0, sys.maxsize))
         random.seed(self.seed)
 
         self.init_path = os.getcwd()
This page took 0.027167 seconds and 4 git commands to generate.