diff --git a/src/api/python/z3/z3.py b/src/api/python/z3/z3.py index c3f40a52bc7..bd38d5baa68 100644 --- a/src/api/python/z3/z3.py +++ b/src/api/python/z3/z3.py @@ -6798,7 +6798,7 @@ def __len__(self): sat >>> st = s.statistics() >>> len(st) - 6 + 7 """ return int(Z3_stats_size(self.ctx.ref(), self.stats)) @@ -6812,11 +6812,11 @@ def __getitem__(self, idx): sat >>> st = s.statistics() >>> len(st) - 6 + 7 >>> st[0] ('nlsat propagations', 2) >>> st[1] - ('nlsat stages', 2) + ('nlsat restarts', 1) """ if idx >= len(self): raise IndexError @@ -10220,7 +10220,7 @@ def FPs(names, fpsort, ctx=None): >>> x.ebits() 8 >>> fpMul(RNE(), fpAdd(RNE(), x, y), z) - x + y * z + (x + y) * z """ ctx = _get_ctx(ctx) if isinstance(names, str):