Created
January 4, 2016 04:43
-
-
Save dpnova/9c837b443392573c6807 to your computer and use it in GitHub Desktop.
This file contains 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 Bar: | |
... def __init__(self): | |
... print "bar init" | |
... | |
>>> @attr.s | |
... class Foo(Bar, object): | |
... something = attr.ib() | |
... | |
>>> Foo("something") | |
Foo(something='something') | |
>>> |
Author
dpnova
commented
Jan 4, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment