mirror of
https://github.com/Z3Prover/z3
synced 2025-06-03 21:01:22 +00:00
fix exception class in python API
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3e0e9c7f3c
commit
7d16ed9fdc
1 changed files with 1 additions and 1 deletions
|
@ -386,7 +386,7 @@ def seq3(args, lp='(', rp=')'):
|
||||||
else:
|
else:
|
||||||
return group(indent(len(lp), compose(to_format(lp), seq(args), to_format(rp))))
|
return group(indent(len(lp), compose(to_format(lp), seq(args), to_format(rp))))
|
||||||
|
|
||||||
class StopPPException:
|
class StopPPException(Exception):
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return 'pp-interrupted'
|
return 'pp-interrupted'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue