qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v3 04/13] qapi: adapt to moved location of Strin


From: Philippe Mathieu-Daudé
Subject: Re: [Qemu-devel] [PATCH v3 04/13] qapi: adapt to moved location of StringIO module in py3
Date: Mon, 15 Jan 2018 07:40:02 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2

On 01/15/2018 07:26 AM, Daniel P. Berrange wrote:
> Signed-off-by: Daniel P. Berrange <address@hidden>

Reviewed-by: Philippe Mathieu-Daudé <address@hidden>

> ---
>  scripts/qapi.py | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/qapi.py b/scripts/qapi.py
> index 7ec2e00b2c..eaa63a58be 100644
> --- a/scripts/qapi.py
> +++ b/scripts/qapi.py
> @@ -22,6 +22,10 @@ try:
>      from collections import OrderedDict
>  except:
>      from ordereddict import OrderedDict
> +try:
> +    from StringIO import StringIO
> +except ImportError:
> +    from io import StringIO
>  
>  builtin_types = {
>      'null':     'QTYPE_QNULL',
> @@ -1995,8 +1999,7 @@ def open_output(output_dir, do_c, do_h, prefix, c_file, 
> h_file,
>          if really:
>              return open(name, opt)
>          else:
> -            import StringIO
> -            return StringIO.StringIO()
> +            return StringIO()
>  
>      fdef = maybe_open(do_c, c_file, 'w')
>      fdecl = maybe_open(do_h, h_file, 'w')
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]