We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8793f7e commit 980b494Copy full SHA for 980b494
test/test_round.py
@@ -135,7 +135,7 @@ def test_round_p3109() -> None:
135
),
136
137
)
138
-def test_round_p3109b(mode, vals) -> None:
+def test_round_p3109b(mode: RoundMode, vals: list) -> None:
139
fi = format_info_p3109(4)
140
141
for sat in (True, False):
@@ -286,7 +286,7 @@ def test_round_p3109b(mode, vals) -> None:
286
f"{str(x[0])}-{'Sat' if x[1] else 'Inf'}" if len(x) == 2 else f"{len(x)}"
287
288
289
-def test_round_p3109_sat(modesat, vals) -> None:
+def test_round_p3109_sat(modesat: tuple[RoundMode, bool], vals: list) -> None:
290
291
292
for val, expected in vals:
0 commit comments