Mercurial > hg > config
view python/mutable_defaults.py @ 371:0f679925616d
add stub to strip irssi timestamps, comments; should be part of textshaper: http://k0s.org/portfolio/ideas/textshaper.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 21 Jul 2013 21:31:53 -0700 |
parents | 434c65593612 |
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!"