Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
a = {i: 2*i for i in range(100)}
b = a.copy()
for i in range(100):
print(i, b[i])
print(len(b))