Skip to content

Commit

Permalink
fix travis build for python doc
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Mar 29, 2021
1 parent 2fdb703 commit 94b4d1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/api/python/z3/z3.py
Original file line number Diff line number Diff line change
Expand Up @@ -6566,16 +6566,16 @@ def num_scopes(self):
>>> s = Solver()
>>> s.num_scopes()
0L
0
>>> s.push()
>>> s.num_scopes()
1L
1
>>> s.push()
>>> s.num_scopes()
2L
2
>>> s.pop()
>>> s.num_scopes()
1L
1
"""
return Z3_solver_get_num_scopes(self.ctx.ref(), self.solver)

Expand Down

0 comments on commit 94b4d1b

Please sign in to comment.