Created
February 4, 2015 19:40
-
-
Save salvarico/fbf2526bf32616a6bbbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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