| 25 | #----------------------------------------------------------------------------- |
| 26 | |
| 27 | class CallableIndexable(object): |
| 28 | def __getitem__(self, idx): return True |
| 29 | def __call__(self, *args, **kws): return True |
| 30 | |
| 31 | |
| 32 | class Autocallable(autocall.IPyAutocall): |
no outgoing calls