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 1e69348 commit 8d55bc4Copy full SHA for 8d55bc4
Lib/test/test_capi/test_opt.py
@@ -1678,7 +1678,7 @@ def f(n):
1678
x = 0
1679
for _ in range(n):
1680
d = {}
1681
- d["Spam"] = 1 # Guarded...
+ d["Spam"] = 1 # unguarded!
1682
x += d["Spam"] # ...unguarded!
1683
return x
1684
@@ -1695,7 +1695,7 @@ def f(n):
1695
1696
1697
l = [0]
1698
- l[0] = 1 # Guarded...
+ l[0] = 1 # unguarded!
1699
[a] = l # ...unguarded!
1700
b = l[0] # ...unguarded!
1701
if l: # ...unguarded!
0 commit comments