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 4629fbc commit 58042d4Copy full SHA for 58042d4
tests/test_class_sh_disowning.py
@@ -60,10 +60,8 @@ def test_mixed():
60
assert is_disowned_results.count(True) == 1
61
if first_pass:
62
first_pass = False
63
- print(
64
- "\nC++ function argument %d is evaluated first."
65
- % (is_disowned_results.index(True) + 1)
66
- )
+ ix = is_disowned_results.index(True) + 1
+ print(f"\nC++ function argument {ix} is evaluated first.")
67
68
return # Comment out for manual leak checking (use `top` command).
69
0 commit comments