Skip to content

Commit 839a749

Browse files
committed
fix review idea
Signed-off-by: Manjusaka <[email protected]>
1 parent 0e12c85 commit 839a749

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_capi/test_opt.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ def f(n):
16781678
x = 0
16791679
for _ in range(n):
16801680
d = {}
1681-
d["Spam"] = 1 # Guarded...
1681+
d["Spam"] = 1 # unguarded!
16821682
x += d["Spam"] # ...unguarded!
16831683
return x
16841684

@@ -1695,7 +1695,7 @@ def f(n):
16951695
x = 0
16961696
for _ in range(n):
16971697
l = [0]
1698-
l[0] = 1 # Guarded...
1698+
l[0] = 1 # unguarded!
16991699
[a] = l # ...unguarded!
17001700
b = l[0] # ...unguarded!
17011701
if l: # ...unguarded!

0 commit comments

Comments
 (0)