Skip to content

Commit eb4e28d

Browse files
authored
[z3.py] Fix incorrect call to _get_ctx in SeqMapI (#7610)
1 parent 8d81a2d commit eb4e28d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/python/z3/z3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11341,7 +11341,7 @@ def SeqMap(f, s):
1134111341

1134211342
def SeqMapI(f, i, s):
1134311343
"""Map function 'f' over sequence 's' at index 'i'"""
11344-
ctx = _get_ctx(f, s)
11344+
ctx = _get_ctx2(f, s)
1134511345
s = _coerce_seq(s, ctx)
1134611346
if not is_expr(i):
1134711347
i = _py2expr(i)

0 commit comments

Comments
 (0)