(self)
| 62 | self.subconf = SubConfigurable(parent=self) |
| 63 | |
| 64 | def describe(self): |
| 65 | print("I am Foo with:") |
| 66 | print(" i =", self.i) |
| 67 | print(" j =", self.j) |
| 68 | print(" name =", self.name) |
| 69 | print(" mode =", self.mode) |
| 70 | self.subconf.describe() |
| 71 | |
| 72 | |
| 73 | class Bar(Configurable): |