Mercurial > hg > config
view python/mutable_defaults.py @ 110:bf567a0e8fef
add a hg-qcommit that does the right thing
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 30 Nov 2010 15:49:33 -0800 |
parents | 70544c7406e2 |
children | 434c65593612 |
line wrap: on
line source
#!/usr/bin/env python 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!"