Re: [Qemu-devel] [PATCH 0/9] iotests: Make them work for both Python 2 and 3

2018-10-19 Thread Max Reitz
On 16.10.18 00:19, Philippe Mathieu-Daudé wrote: > Hi Max, > > On 15/10/2018 16:14, Max Reitz wrote: >> This series prepares the iotests to work with both Python 2 and 3. In >> some places, it adds version-specific code and decides what to do based >> on the version (for instance, whether to impo

Re: [Qemu-devel] [PATCH 0/9] iotests: Make them work for both Python 2 and 3

2018-10-15 Thread Philippe Mathieu-Daudé
Hi Max, On 15/10/2018 16:14, Max Reitz wrote: > This series prepares the iotests to work with both Python 2 and 3. In > some places, it adds version-specific code and decides what to do based > on the version (for instance, whether to import the StringIO class from > the 'io' or the 'StringIO' mo

[Qemu-devel] [PATCH 0/9] iotests: Make them work for both Python 2 and 3

2018-10-15 Thread Max Reitz
This series prepares the iotests to work with both Python 2 and 3. In some places, it adds version-specific code and decides what to do based on the version (for instance, whether to import the StringIO class from the 'io' or the 'StringIO' module), but most of the time, it just makes code work fo