3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

fixed problem with Python 2.5

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-11-07 05:55:41 -08:00
parent cec851440e
commit c3a0a29c4f

View file

@ -660,8 +660,7 @@ def def_APIs():
m = pat2.match(line) m = pat2.match(line)
if m: if m:
eval(line) eval(line)
except Exception as ex: except Exception:
print ex
raise MKException("Failed to process API definition: %s" % line) raise MKException("Failed to process API definition: %s" % line)
def_Types() def_Types()
def_APIs() def_APIs()