3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

ML API: fixed Python 3.4 issues in the build scripts

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2015-01-19 15:29:50 +00:00
parent e754aa1c11
commit c9fa77cc70
2 changed files with 9 additions and 9 deletions

View file

@ -276,7 +276,7 @@ def param2dotnet(p):
elif k == OUT_ARRAY:
return "[Out] %s[]" % type2dotnet(param_type(p))
elif k == OUT_MANAGED_ARRAY:
return "[Out] out %s[]" % type2dotnet(param_type(p))
return "[Out] out %s[]" % type2dotnet(param_type(p))
else:
return type2dotnet(param_type(p))
@ -1517,7 +1517,7 @@ def mk_ml():
ml_wrapper.write('}\n')
ml_wrapper.write('#endif\n')
if is_verbose():
print "Generated '%s'" % ml_nativef
print ('Generated "%s"' % ml_nativef)
# Collect API(...) commands from
def def_APIs():