Lets say i have this function:
def test(t=[]):
t.append(1)
print(t)
if i run it a few times the list will be appended like this:
test() #[1]
test() #[1, 1]
so where is this list stored?
it is not in globals()
// locals()
the functions __dict__
is also empty