Commit 423edd9a authored by Paolo Bonzini's avatar Paolo Bonzini Committed by Philippe Mathieu-Daudé
Browse files

drop "from __future__ import print_function"



This is only needed for Python 2, which we do not support anymore.

Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Acked-by: default avatarAlex Bennée <alex.bennee@linaro.org>
Acked-by: default avatarMarkus Armbruster <armbru@redhat.com>
Message-Id: <20200204160604.19883-1-pbonzini@redhat.com>
Signed-off-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
parent 6dd360ce
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
# Usage: ./analyse-9p-simpletrace <trace-events> <trace-pid>
#
# Author: Harsh Prateek Bora
from __future__ import print_function
import os
import simpletrace

+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
# Author: Alex Bennée <alex.bennee@linaro.org>
#

from __future__ import print_function
import simpletrace
import argparse
import numpy as np
+0 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@
Run QEMU with all combinations of -machine and -device types,
check for crashes and unexpected errors.
"""
from __future__ import print_function

import os
import sys
+0 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@ Authors:
This work is licensed under the terms of the GNU GPL, version 2 or later. See
the COPYING file in the top-level directory.
"""
from __future__ import print_function

import ctypes
import struct
+0 −1
Original line number Diff line number Diff line
@@ -32,7 +32,6 @@
# consuming CPU cycles.  No disk I/O is performed since the ring buffer holds a
# fixed-size in-memory trace.

from __future__ import print_function
import sys
import os

Loading