From: Eduardo Habkost <ehabkost@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>, qemu-devel@nongnu.org
Cc: Eduardo Habkost <ehabkost@redhat.com>, Cleber Rosa <crosa@redhat.com>
Subject: [Qemu-devel] [PULL 00/13] Python queue, 2018-06-11
Date: Mon, 11 Jun 2018 14:42:30 -0300 [thread overview]
Message-ID: <20180611174243.31070-1-ehabkost@redhat.com> (raw)
The following changes since commit 0d2fa03dae4fbe185a082f361342b1e30aed4582:
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20180608' into staging (2018-06-08 16:26:51 +0100)
are available in the Git repository at:
git://github.com/ehabkost/qemu.git tags/python-next-pull-request
for you to fetch changes up to c7883412440905b41dde7e70f4af782932e80e90:
python: Remove scripts/ordereddict.py (2018-06-08 16:40:54 -0300)
----------------------------------------------------------------
Python queue, 2018-06-11
* Make code compatible with Python 3 using 'futurize --stage1'
* Require Python >= 2.7 and remove Python 2.6 compatibility
modules
----------------------------------------------------------------
Eduardo Habkost (13):
python: futurize -f libfuturize.fixes.fix_print_with_import
python: futurize -f libfuturize.fixes.fix_absolute_import
python: futurize -f libfuturize.fixes.fix_next_call
python: futurize -f lib2to3.fixes.fix_has_key
python: futurize -f lib2to3.fixes.fix_standarderror
python: futurize -f lib2to3.fixes.fix_reduce
python: futurize -f lib2to3.fixes.fix_tuple_params
python: futurize -f lib2to3.fixes.fix_renames
python: futurize -f lib2to3.fixes.fix_except
python: futurize -f lib2to3.fixes.fix_numliterals
configure: Require Python 2.7 or newer
python: Remove scripts/argparse.py
python: Remove scripts/ordereddict.py
configure | 4 +-
Makefile | 1 -
scripts/analyse-9p-simpletrace.py | 89 +-
scripts/analyse-locks-simpletrace.py | 3 +-
scripts/analyze-migration.py | 11 +-
scripts/argparse.py | 2406 ----------------------
scripts/dump-guest-memory.py | 1 +
scripts/ordereddict.py | 128 --
scripts/qapi/common.py | 5 +-
scripts/replay-dump.py | 21 +-
scripts/signrom.py | 1 +
scripts/simpletrace.py | 5 +-
scripts/vmstate-static-checker.py | 89 +-
scripts/device-crash-test | 3 +-
scripts/kvm/kvm_flightrecorder | 21 +-
scripts/kvm/vmxcap | 1 +
scripts/qmp/qemu-ga-client | 10 +-
scripts/qmp/qmp | 24 +-
scripts/qmp/qmp-shell | 40 +-
scripts/qmp/qom-fuse | 11 +-
scripts/qmp/qom-get | 12 +-
scripts/qmp/qom-list | 16 +-
scripts/qmp/qom-set | 10 +-
scripts/qmp/qom-tree | 16 +-
tests/Makefile.include | 1 -
tests/docker/docker.py | 17 +-
tests/docker/travis.py | 15 +-
tests/guest-debug/test-gdbstub.py | 1 +
tests/image-fuzzer/qcow2/__init__.py | 3 +-
tests/image-fuzzer/qcow2/fuzz.py | 1 +
tests/image-fuzzer/qcow2/layout.py | 3 +-
tests/image-fuzzer/runner.py | 42 +-
tests/migration/guestperf/engine.py | 29 +-
tests/migration/guestperf/plot.py | 17 +-
tests/migration/guestperf/shell.py | 19 +-
tests/qemu-iotests/093 | 2 +-
tests/qemu-iotests/096 | 4 +-
tests/qemu-iotests/118 | 24 +-
tests/qemu-iotests/136 | 2 +-
tests/qemu-iotests/149 | 3 +-
tests/qemu-iotests/165 | 3 +-
tests/qemu-iotests/iotests.py | 5 +-
tests/qemu-iotests/nbd-fault-injector.py | 7 +-
tests/qemu-iotests/qcow2.py | 39 +-
tests/qemu-iotests/qed.py | 17 +-
tests/vm/basevm.py | 3 +-
46 files changed, 341 insertions(+), 2844 deletions(-)
delete mode 100644 scripts/argparse.py
delete mode 100644 scripts/ordereddict.py
--
2.18.0.rc1.1.g3f1ff2140
next reply other threads:[~2018-06-11 17:42 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-11 17:42 Eduardo Habkost [this message]
2018-06-11 17:42 ` [Qemu-devel] [PULL 01/13] python: futurize -f libfuturize.fixes.fix_print_with_import Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 02/13] python: futurize -f libfuturize.fixes.fix_absolute_import Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 03/13] python: futurize -f libfuturize.fixes.fix_next_call Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 04/13] python: futurize -f lib2to3.fixes.fix_has_key Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 05/13] python: futurize -f lib2to3.fixes.fix_standarderror Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 06/13] python: futurize -f lib2to3.fixes.fix_reduce Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 07/13] python: futurize -f lib2to3.fixes.fix_tuple_params Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 08/13] python: futurize -f lib2to3.fixes.fix_renames Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 09/13] python: futurize -f lib2to3.fixes.fix_except Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 10/13] python: futurize -f lib2to3.fixes.fix_numliterals Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 11/13] configure: Require Python 2.7 or newer Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 12/13] python: Remove scripts/argparse.py Eduardo Habkost
2018-06-11 17:42 ` [Qemu-devel] [PULL 13/13] python: Remove scripts/ordereddict.py Eduardo Habkost
2018-06-11 18:36 ` [Qemu-devel] [PULL 00/13] Python queue, 2018-06-11 no-reply
2018-06-12 11:42 ` Peter Maydell
2018-06-19 11:13 ` Peter Maydell
2018-06-19 12:05 ` Eduardo Habkost
2018-06-19 12:13 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180611174243.31070-1-ehabkost@redhat.com \
--to=ehabkost@redhat.com \
--cc=crosa@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.