We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66edc5d commit b6ec51bCopy full SHA for b6ec51b
1 file changed
tests/basics/dict-del.py
@@ -0,0 +1,8 @@
1
+for i in range(100):
2
+ d = dict()
3
+ for j in range(100):
4
+ d[j] = j
5
+ del d[i]
6
7
+ if j not in d:
8
+ print(j, 'not in d')
0 commit comments