Skip to content

Commit debc65d

Browse files
authored
Remove redundant comment
1 parent b1702f2 commit debc65d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_capi/test_opt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1442,7 +1442,7 @@ def f(n):
14421442
trace = []
14431443
for i in range(n):
14441444
# zero is always (int) 0, but we can only prove that it's a integer:
1445-
zero = i - i # at this point python knows f is an int, but doesnt know that it is 0 (we know it is 0 though)
1445+
zero = i - i
14461446
trace.append("A")
14471447
if not zero: # Kept.
14481448
trace.append("B")

0 commit comments

Comments
 (0)