Warts

660 days ago by msears_bmc

def x(x=[]): return x A=x() print A 
       
[]
[]
A.append(42) B=x() print B 
       
[42]
[42]