def __len__(self): return len(_pf.get_tables(self.anchor))
def has_key(self, key): return _pf.get_tables(self.anchor).has_key(key)
def __getitem__(self, key): try: t = _pf.get_tables(self.anchor)[key] except KeyError: raise OException, "Table does not exist." return Table(self.anchor, key, t)
def keys(self): return _pf.get_tables(self.anchor).keys()