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

Eduardo Habkost posted 4 patches 4 years, 9 months ago
Failed in applying to current master (apply log)
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
[libvirt] [PULL 0/4] Python queue, 2019-07-01
Posted by Eduardo Habkost 4 years, 9 months ago
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

-- 
2.18.0.rc1.1.g3f1ff2140

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [Qemu-devel] [PULL 0/4] Python queue, 2019-07-01
Posted by Peter Maydell 4 years, 9 months ago
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