Closed amcgregor closed 10 years ago
Example problem case:
class Foo(Container): type = Attribute(default=str) class Bar(Foo): type = unicode Bar.__attributes__ == Foo.__attributes__ a = Bar(int) a.type == int
Example problem case: