예제 #1
0
파일: stock_mapping.py 프로젝트: wiz21b/koi
def Quantity( label, short_label=""):
    c = Column(Float)
    c._horse_label = label
    c._horse_short_label = short_label
    return c
예제 #2
0
파일: stock_mapping.py 프로젝트: wiz21b/koi
def TextLine( label, short_label=""):
    c = Column(String)
    c._horse_label = label
    c._horse_short_label = short_label
    return c