mbox

[PULL,0/4] Python queue, 2019-07-01

Message ID 20190701222912.4703-1-ehabkost@redhat.com
State New
Headers show

Pull-request

git://github.com/ehabkost/qemu.git tags/python-next-pull-request

Message

Eduardo Habkost July 1, 2019, 10:29 p.m. UTC
The following changes since commit 7d0e02405fc02a181319b1ab8681d2f72246b7c6:

  Merge remote-tracking branch 'remotes/vivier2/tags/trivial-patches-pull-request' into staging (2019-07-01 17:40:32 +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 e5abf59eae5990296c243202f95f801495c52e76:

  Deprecate Python 2 support (2019-07-01 19:02:10 -0300)

----------------------------------------------------------------
Python queue, 2019-07-01

* Deprecate Python 2 support (Eduardo Habkost)
* qemu/__init__.py refactor (John Snow)
* make qmp-shell work with python3 (Igor Mammedov)

----------------------------------------------------------------

Eduardo Habkost (1):
  Deprecate Python 2 support

Igor Mammedov (1):
  qmp: make qmp-shell work with python3

John Snow (2):
  python/qemu: split QEMUMachine out from underneath __init__.py
  machine.py: minor delinting

 configure                                 |   8 +
 scripts/render_block_graph.py             |   2 +-
 python/qemu/__init__.py                   | 502 +-------------------
 python/qemu/machine.py                    | 531 ++++++++++++++++++++++
 python/qemu/qtest.py                      |   2 +-
 qemu-deprecated.texi                      |   8 +
 scripts/device-crash-test                 |   2 +-
 scripts/qmp/qmp-shell                     |   5 +-
 tests/acceptance/avocado_qemu/__init__.py |   2 +-
 tests/acceptance/virtio_version.py        |   2 +-
 tests/migration/guestperf/engine.py       |  24 +-
 tests/qemu-iotests/235                    |   2 +-
 tests/vm/basevm.py                        |   3 +-
 13 files changed, 572 insertions(+), 521 deletions(-)
 create mode 100644 python/qemu/machine.py

Comments

Peter Maydell July 4, 2019, 12:04 p.m. UTC | #1
On Mon, 1 Jul 2019 at 23:29, Eduardo Habkost <ehabkost@redhat.com> wrote:
>
> The following changes since commit 7d0e02405fc02a181319b1ab8681d2f72246b7c6:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/trivial-patches-pull-request' into staging (2019-07-01 17:40:32 +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 e5abf59eae5990296c243202f95f801495c52e76:
>
>   Deprecate Python 2 support (2019-07-01 19:02:10 -0300)
>
> ----------------------------------------------------------------
> Python queue, 2019-07-01
>
> * Deprecate Python 2 support (Eduardo Habkost)
> * qemu/__init__.py refactor (John Snow)
> * make qmp-shell work with python3 (Igor Mammedov)
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.

(In particular we should flag up the python 2 deprecation in
the 'build information' section.)

-- PMM