Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
d = {1: 2, 3: 4}
els = []
for i in d:
els.append((i, d[i]))
print(sorted(els))