| 63 | |
| 64 | |
| 65 | class TestConfig3(TestConfigurable): |
| 66 | # TestConfig3 is a configuration option that is itself configurable. |
| 67 | @classmethod |
| 68 | def configurable_base(cls): |
| 69 | return TestConfig3 |
| 70 | |
| 71 | @classmethod |
| 72 | def configurable_default(cls): |
| 73 | return TestConfig3A |
| 74 | |
| 75 | |
| 76 | class TestConfig3A(TestConfig3): |
no outgoing calls