]> git.proxmox.com Git - mirror_qemu.git/commitdiff
python: futurize -f lib2to3.fixes.fix_renames
authorEduardo Habkost <ehabkost@redhat.com>
Fri, 8 Jun 2018 12:29:50 +0000 (09:29 -0300)
committerEduardo Habkost <ehabkost@redhat.com>
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 <stefanha@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20180608122952.2009-9-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
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()