| 66 | |
| 67 | |
| 68 | class Bar(Foo): |
| 69 | b = Unicode("gotit", help="The string b.").tag(config=False) |
| 70 | c = Float(help="The string c.").tag(config=True) |
| 71 | bset = Set([]).tag(config=True, multiplicity="+") |
| 72 | bset_values = Set([2, 1, 5]).tag(config=True, multiplicity="+") |
| 73 | bdict = Dict().tag(config=True, multiplicity="+") |
| 74 | bdict_values = Dict({1: "a", "0": "b", 5: "c"}).tag(config=True, multiplicity="+") |
| 75 | |
| 76 | |
| 77 | foo_help = """Foo(Configurable) options |