class indexer: def __getitem__(self, index): return index class stepper: def __getitem__(self,i): return self.data[i] def h(self): print "hello"