mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 19:16:13 +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
1 changed files with 5 additions and 2 deletions
|
@ -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 = {
|
||||
'str': 'QTYPE_QSTRING',
|
||||
|
@ -1997,8 +2001,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')
|
||||
|
|
Loading…
Reference in a new issue