[Qemu-devel] [PATCH 1/1] Introduce a Python module structure

2019-02-06 Thread Cleber Rosa
This is a simple move of Python code that wraps common QEMU functionality, and are used by a number of different tests and scripts. By treating that code as a real Python module, we can more easily: * reuse code * have a proper place for the module's own unittests * apply a more consistent styl

Re: [Qemu-devel] [PATCH 1/1] Introduce a Python module structure

2019-02-18 Thread Caio Carrara
On Wed, Feb 06, 2019 at 11:29:01AM -0500, Cleber Rosa wrote: > This is a simple move of Python code that wraps common QEMU > functionality, and are used by a number of different tests > and scripts. > > By treating that code as a real Python module, we can more easily: > * reuse code > * have a