예제 #1
0
 def __init__(self, cells, first_cell=':FOR', comment=None):
     self._cells = cells
     self._first_cell = first_cell
     ForLoop.__init__(self, cells, comment)
예제 #2
0
 def __init__(self, cells, first_cell=':FOR', comment=None):
     self._cells = cells
     self._first_cell = first_cell
     ForLoop.__init__(self, cells, comment)
예제 #3
0
 def __init__(self, *args, **kws):
     ForLoop.__init__(self, self, *args, **kws)
예제 #4
0
 def __init__(self, *args, **kws):
     ForLoop.__init__(self, self, *args, **kws)
예제 #5
0
 def __init__(self, cells, first_cell=':FOR'):
     self._cells = cells
     self._first_cell = first_cell
     ForLoop.__init__(self, cells)