aboutsummaryrefslogtreecommitdiff
path: root/scripts/decodetree.py
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2019-01-25 11:03:22 +0100
committerEduardo Habkost <ehabkost@redhat.com>2019-01-25 11:41:42 -0200
commit651514df88fd53d537b3b78a7548663cc0816b1b (patch)
tree38fcf34edec2c6f5bf871a66742178370dd01059 /scripts/decodetree.py
parent55e0a3463528f0588e4b8813baddc4179777b3e3 (diff)
downloadqemu-651514df88fd53d537b3b78a7548663cc0816b1b.zip
qemu-651514df88fd53d537b3b78a7548663cc0816b1b.tar.gz
qemu-651514df88fd53d537b3b78a7548663cc0816b1b.tar.bz2
decodetree: re.fullmatch was added in 3.4
Python 3 versions earlier than 3.4 do not have it, use the same workaround that is in place for 3.0. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <1548410602-16008-1-git-send-email-pbonzini@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'scripts/decodetree.py')
-rwxr-xr-xscripts/decodetree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/decodetree.py b/scripts/decodetree.py
index 0bc73b5..e342d27 100755
--- a/scripts/decodetree.py
+++ b/scripts/decodetree.py
@@ -204,7 +204,7 @@ def output(*args):
output_fd.write(a)
-if sys.version_info >= (3, 0):
+if sys.version_info >= (3, 4):
re_fullmatch = re.fullmatch
else:
def re_fullmatch(pat, str):