Contrarian view on mutable default arguments in Python

Contrarian view on mutable default arguments.¶The use of mutable defaults is probably the most infamous Python gotcha. Default values are evaluated at definition time, which means mutating them will Read more

Similar