Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# test builtin locals()
x = 123
print(locals()['x'])
class A:
y = 1
def f(self):
pass
print('x' in locals())
print(locals()['y'])
print('f' in locals())