コード例 #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