Mercurial > hg > config
view python/example/mutable_defaults.py @ 847:6c918c07d0e3
[gpg] make a front-end to add a line to a gpg symmetrically encrypted file
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 17 Oct 2017 11:59:09 -0700 |
parents | d6f659169b49 |
children |
line wrap: on
line source
#!/usr/bin/env python # see also: http://www.daniweb.com/software-development/python/threads/66697 class Foo(object): def __init__(self, mutable=['default']): self.foo = mutable self.foo.append(1) if __name__ == '__main__': bar = Foo() print len(bar.foo) fleem = Foo() print len(fleem.foo) assert len(fleem.foo) == 2, "Don't use default mutable arguments!"