Tagged Questions
1
vote
3answers
109 views
Python - inbound outbound argument
I've read in Expert Python Programming about this edge case. Check this code:
def f(arg={}):
arg['3'] = 4
return arg
>>> print f()
{'3': 4}
>>> res = f()
>>> ...