summaryrefslogtreecommitdiff
path: root/doc/data/messages/d/dangerous-default-value/good.py
blob: 605c3cec397d12263a65e65d981410a6eb0d39f3 (plain)
1
2
3
4
5
def whats_on_the_telly(penguin=None):
    if penguin is None:
        penguin = []
    penguin.append("property of the zoo")
    return penguin