Exemple #1
0
 def listattr(self):
     listing = Object.listattr(self)
     for name, cell in self.cells.items():
         if isinstance(cell, ShadowCell) and cell.link is not None:
             continue
         listing.append(space.String(name))
     return listing
Exemple #2
0
 def listattr(self):
     listing = Object.listattr(self)
     for name, cell in self.cells.items():
         if isinstance(cell, ShadowCell) and cell.link is not None:
             continue
         listing.append(space.String(name))
     return listing
Exemple #3
0
 def listattr(self):
     listing = Object.listattr(self)
     listing.append(space.String(u"doc"))
     listing.append(space.String(u"loc"))
     listing.append(space.String(u"spec"))
     return listing
Exemple #4
0
 def listattr(self):
     listing = Object.listattr(self)
     for name in self.map.attribute_indexes:
         listing.append(space.String(name))
     return listing
Exemple #5
0
 def listattr(self):
     listing = Object.listattr(self)
     listing.append(space.String(u"doc"))
     return listing
Exemple #6
0
 def listattr(self):
     listing = Object.listattr(self)
     for name in self.cells:
         listing.append(space.String(name))
     return listing
Exemple #7
0
 def listattr(self):
     listing = Object.listattr(self)
     for name in self.cells:
         listing.append(space.String(name))
     return listing
Exemple #8
0
 def listattr(self):
     listing = Object.listattr(self)
     listing.append(space.String(u"link"))
     listing.append(space.String(u"name"))
     listing.append(space.String(u"parent"))
     return listing