Move tests in basic/tests/ up one level preparating to multiple test dirs.
This commit is contained in:
5
tests/basics/dict_copy.py
Normal file
5
tests/basics/dict_copy.py
Normal file
@@ -0,0 +1,5 @@
|
||||
a = {i: 2*i for i in range(1000)}
|
||||
b = a.copy()
|
||||
for i in range(1000):
|
||||
print(i, b[i])
|
||||
print(len(b))
|
||||
Reference in New Issue
Block a user