mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 09:15:38 +00:00
qapi: adapt to moved location of StringIO module in py3
Backports commit 5f90af8e6b34f9e6b60eb05a15707a95a0febbde from qemu
This commit is contained in:
parent
06f8bcbc97
commit
9e0335d129
|
@ -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')
|
||||||
|
|
Loading…
Reference in a new issue