Ejemplo n.º 1
0
def Quantity( label, short_label=""):
    c = Column(Float)
    c._horse_label = label
    c._horse_short_label = short_label
    return c
Ejemplo n.º 2
0
def TextLine( label, short_label=""):
    c = Column(String)
    c._horse_label = label
    c._horse_short_label = short_label
    return c