python: futurize -f lib2to3.fixes.fix_numliterals

Convert octal literals into the new syntax.

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_numliterals $py

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20180608122952.2009-11-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
Eduardo Habkost 2018-06-08 09:29:52 -03:00
parent bd228083f7
commit 4803c5cde8
2 changed files with 15 additions and 15 deletions

View file

@ -90,7 +90,7 @@ class QOMFS(Fuse):
def getattr(self, path):
if self.is_link(path):
value = posix.stat_result((0755 | stat.S_IFLNK,
value = posix.stat_result((0o755 | stat.S_IFLNK,
self.get_ino(path),
0,
2,
@ -101,7 +101,7 @@ class QOMFS(Fuse):
0,
0))
elif self.is_object(path):
value = posix.stat_result((0755 | stat.S_IFDIR,
value = posix.stat_result((0o755 | stat.S_IFDIR,
self.get_ino(path),
0,
2,
@ -112,7 +112,7 @@ class QOMFS(Fuse):
0,
0))
elif self.is_property(path):
value = posix.stat_result((0644 | stat.S_IFREG,
value = posix.stat_result((0o644 | stat.S_IFREG,
self.get_ino(path),
0,
1,