qapi: adapt to moved location of StringIO module in py3

Backports commit 5f90af8e6b34f9e6b60eb05a15707a95a0febbde from qemu
This commit is contained in:
Daniel P. Berrange 2018-03-06 11:29:34 -05:00 committed by Lioncash
parent 06f8bcbc97
commit 9e0335d129
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -22,6 +22,10 @@ try:
from collections import OrderedDict from collections import OrderedDict
except: except:
from ordereddict import OrderedDict from ordereddict import OrderedDict
try:
from StringIO import StringIO
except ImportError:
from io import StringIO
builtin_types = { builtin_types = {
'str': 'QTYPE_QSTRING', 'str': 'QTYPE_QSTRING',
@ -1997,8 +2001,7 @@ def open_output(output_dir, do_c, do_h, prefix, c_file, h_file,
if really: if really:
return open(name, opt) return open(name, opt)
else: else:
import StringIO return StringIO()
return StringIO.StringIO()
fdef = maybe_open(do_c, c_file, 'w') fdef = maybe_open(do_c, c_file, 'w')
fdecl = maybe_open(do_h, h_file, 'w') fdecl = maybe_open(do_h, h_file, 'w')