Skip to content

Instantly share code, notes, and snippets.

@salvarico
Created February 4, 2015 19:40
Show Gist options
  • Select an option

  • Save salvarico/fbf2526bf32616a6bbbc to your computer and use it in GitHub Desktop.

Select an option

Save salvarico/fbf2526bf32616a6bbbc to your computer and use it in GitHub Desktop.
class Boing(object):
"""docstring for Boing"""
def __init__(self, a, b, c):
super(Boing, self).__init__()
#self.arg = arg
self.a = a
self.b = b
self.c = c
z = Boing(1,2,3)
y = Boing(4,5,6)
print vars(z)
print vars(y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment