Skip to content

Commit 1d17afe

Browse files
committed
is
1 parent 6c4588e commit 1d17afe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_capi/test_opt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1441,7 +1441,7 @@ def test_narrow_type_to_constant_bool_false(self):
14411441
def f(n):
14421442
trace = []
14431443
for i in range(n):
1444-
# false *usually* False, but we can only prove that it's a bool:
1444+
# false is *usually* False, but we can only prove that it's a bool:
14451445
false = i % 100 == 0
14461446
trace.append("A")
14471447
if not false: # Kept.
@@ -1472,7 +1472,7 @@ def test_narrow_type_to_constant_bool_true(self):
14721472
def f(n):
14731473
trace = []
14741474
for i in range(n):
1475-
# true *usually* True, but we can only prove that it's a bool:
1475+
# true is *usually* True, but we can only prove that it's a bool:
14761476
true = i % 100 != 0
14771477
trace.append("A")
14781478
if true: # Kept.

0 commit comments

Comments
 (0)