From eb4e28d5d4f7e56c310af309cea905a8635ab920 Mon Sep 17 00:00:00 2001 From: Ammar Askar Date: Fri, 4 Apr 2025 15:54:32 -0700 Subject: [PATCH] [z3.py] Fix incorrect call to _get_ctx in SeqMapI (#7610) --- src/api/python/z3/z3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/python/z3/z3.py b/src/api/python/z3/z3.py index f2d5d374c..162aae792 100644 --- a/src/api/python/z3/z3.py +++ b/src/api/python/z3/z3.py @@ -11341,7 +11341,7 @@ def SeqMap(f, s): def SeqMapI(f, i, s): """Map function 'f' over sequence 's' at index 'i'""" - ctx = _get_ctx(f, s) + ctx = _get_ctx2(f, s) s = _coerce_seq(s, ctx) if not is_expr(i): i = _py2expr(i)