What you're running into is how Python handles default arguments.

Take this for example:
def my_func(seq=[]):
    print(seq)
    seq.append(42)
    print(seq)

my_func()
     # []
     # [42]

my_func()
     # [42]
     # [42, 42]
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/DJLTF3B2KQ6G3EITA5EJCSVYYISJIVUZ/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to