コード例 #1
0
ファイル: LineMill.py プロジェクト: ojashvirautela/citcoms
    def __init__(self, comment, firstLine):
        Mill.__init__(self)
        LineComments.__init__(self)

        self.commentLine = comment
        self.firstLine = firstLine

        return
コード例 #2
0
ファイル: LineMill.py プロジェクト: bmi-forum/bmi-pyre
    def __init__(self, comment, firstLine):
        Mill.__init__(self)
        LineComments.__init__(self)

        self.commentLine = comment
        self.firstLine = firstLine

        return
コード例 #3
0
ファイル: BlockMill.py プロジェクト: haojianggod/jd_etl_task
    def __init__(self, begin, line, end, firstline):
        Mill.__init__(self)
        BlockComments.__init__(self)

        self.commentBlockLine = line
        self.commentBeginBlock = begin
        self.commentEndBlock = end
        self.firstLine = firstline

        return
コード例 #4
0
    def __init__(self, begin, line, end, firstline):
        Mill.__init__(self)
        BlockComments.__init__(self)

        self.commentBlockLine = line
        self.commentBeginBlock = begin
        self.commentEndBlock = end
        self.firstLine = firstline

        return