Skip to content

Instantly share code, notes, and snippets.

@thoas
Created April 5, 2012 09:59
Show Gist options
  • Select an option

  • Save thoas/2309666 to your computer and use it in GitHub Desktop.

Select an option

Save thoas/2309666 to your computer and use it in GitHub Desktop.
class Foo(object):
def __init__(self, name=None):
if not name:
name = str()
self.name = name
bar = Foo()
bar = Foo(name="test")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment