Re: [PATCH v6 03/25] python: create utils sub-package

2021-05-21 Thread John Snow
On 5/21/21 1:18 PM, Willian Rampazzo wrote: On Wed, May 12, 2021 at 8:13 PM John Snow wrote: Create a space for miscellaneous things that don't belong strictly in "qemu.machine" nor "qemu.qmp" packages. Signed-off-by: John Snow --- python/qemu/machine/__init__.py | 8

Re: [PATCH v6 03/25] python: create utils sub-package

2021-05-21 Thread Willian Rampazzo
On Wed, May 12, 2021 at 8:13 PM John Snow wrote: > > Create a space for miscellaneous things that don't belong strictly in > "qemu.machine" nor "qemu.qmp" packages. > > Signed-off-by: John Snow > --- > python/qemu/machine/__init__.py | 8 > python/qemu/utils/__init__.py

Re: [PATCH v6 03/25] python: create utils sub-package

2021-05-18 Thread John Snow
On 5/18/21 11:12 AM, Cleber Rosa wrote: As you mentioned in the previous patch notes, I would not mind a squash here. Either way: Reviewed-by: Cleber Rosa Tested-by: Cleber Rosa I will definitely do so, then. :) Thanks for the reviews thus far! --js

Re: [PATCH v6 03/25] python: create utils sub-package

2021-05-18 Thread Cleber Rosa
On Wed, May 12, 2021 at 07:12:19PM -0400, John Snow wrote: > Create a space for miscellaneous things that don't belong strictly in > "qemu.machine" nor "qemu.qmp" packages. > > Signed-off-by: John Snow > --- > python/qemu/machine/__init__.py | 8 > python/qemu/utils/__init__.

[PATCH v6 03/25] python: create utils sub-package

2021-05-12 Thread John Snow
Create a space for miscellaneous things that don't belong strictly in "qemu.machine" nor "qemu.qmp" packages. Signed-off-by: John Snow --- python/qemu/machine/__init__.py | 8 python/qemu/utils/__init__.py | 23 +++ python/qemu/{machine => util