def build(self): return Tag.text(self.n, *self.stars())
def build(self): ll = [Star(i) for i in range(int(self.n))] return Tag.text("-%s-" % self.n, *ll)
def build(self): return Tag.text(self.compute(), self.stars( )) # <---- DANGEROUS the binded is str'ised at build !!!!
def compute(self): return Tag.text("-%s-" % self.n)
def stars(self): return Tag.text(*[Star(i) for i in range(int(self.n))])
def build(self): return Tag.text("-%s-" % self.n, self.stars( )) # <---- DANGEROUS the binded is str'ised at build !!!!