6 lines
132 B
Python
6 lines
132 B
Python
# parameters.defaults.mutable.no.trap.py
|
|
def func(a=None):
|
|
if a is None:
|
|
a = []
|
|
# do whatever you want with `a` ...
|