qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/13] Python queue, 2018-06-11
@ 2018-06-11 17:42 Eduardo Habkost
  2018-06-11 17:42 ` [Qemu-devel] [PULL 01/13] python: futurize -f libfuturize.fixes.fix_print_with_import Eduardo Habkost
                   ` (15 more replies)
  0 siblings, 16 replies; 19+ messages in thread
From: Eduardo Habkost @ 2018-06-11 17:42 UTC (permalink / raw)
  To: Peter Maydell, qemu-devel; +Cc: Eduardo Habkost, Cleber Rosa

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

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2018-06-19 12:13 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-11 17:42 [Qemu-devel] [PULL 00/13] Python queue, 2018-06-11 Eduardo Habkost
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).