view python/mutable_defaults.py @ 156:a9c3a32d8385

add a function for loading modules from the web
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 27 Jul 2011 08:43:34 -0700
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!"