We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e89bb37 commit 0093157Copy full SHA for 0093157
src/api/python/z3/z3.py
@@ -9976,7 +9976,7 @@ def __radd__(self, other):
9976
def __getitem__(self, i):
9977
if _is_int(i):
9978
i = IntVal(i, self.ctx)
9979
- return SeqRef(Z3_mk_seq_nth(self.ctx_ref(), self.as_ast(), i.as_ast()), self.ctx)
+ return _to_expr_ref(Z3_mk_seq_nth(self.ctx_ref(), self.as_ast(), i.as_ast()), self.ctx)
9980
9981
def at(self, i):
9982
0 commit comments