Ejemplo n.º 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
Ejemplo n.º 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
Ejemplo n.º 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
Ejemplo n.º 4
0
 def listattr(self):
     listing = Object.listattr(self)
     for name in self.map.attribute_indexes:
         listing.append(space.String(name))
     return listing
Ejemplo n.º 5
0
 def listattr(self):
     listing = Object.listattr(self)
     listing.append(space.String(u"doc"))
     return listing
Ejemplo n.º 6
0
 def listattr(self):
     listing = Object.listattr(self)
     for name in self.cells:
         listing.append(space.String(name))
     return listing
Ejemplo n.º 7
0
 def listattr(self):
     listing = Object.listattr(self)
     for name in self.cells:
         listing.append(space.String(name))
     return listing
Ejemplo n.º 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