示例#1
0
 def __init__(self):
   Bolt.__init__(self)
   self._statsfromstations = {}
示例#2
0
 def __init__(self, stations):
   Bolt.__init__(self)
   self._stations = stations
示例#3
0
 def __init__(self):
   Bolt.__init__(self)
   self._statsfromtrain = {}
示例#4
0
 def __init__(self, outputlabel, trainstops):
   Bolt.__init__(self)
   self._outputlabel = outputlabel
   self._trainstops = trainstops
示例#5
0
 def __init__(self, timeframes):
   Bolt.__init__(self)
   self._timeframes = []
   for (start, end) in timeframes:
     self._timeframes.append((self._tominutes(start), self._tominutes(end)))
示例#6
0
 def __init__(self):
     Bolt.__init__(self)
     self._stationsfromline = {}
示例#7
0
 def __init__(self):
   Bolt.__init__(self)
   self._stationsfromline = {}
示例#8
0
 def __init__(self, outputlabel, fileobj):
     Bolt.__init__(self)
     self._outputlabel = outputlabel
     self._f = fileobj
示例#9
0
 def __init__(self, inputs):
     Bolt.__init__(self)
     self._inputs = inputs
示例#10
0
 def __init__(self):
     Bolt.__init__(self)
     self._statsfromtrain = {}
示例#11
0
 def __init__(self):
     Bolt.__init__(self)
     self._statsfromstations = {}
示例#12
0
 def __init__(self, stations):
     Bolt.__init__(self)
     self._stations = stations
示例#13
0
 def __init__(self, timeframes):
     Bolt.__init__(self)
     self._timeframes = []
     for (start, end) in timeframes:
         self._timeframes.append(
             (self._tominutes(start), self._tominutes(end)))
示例#14
0
 def __init__(self, outputlabel, trainstops):
     Bolt.__init__(self)
     self._outputlabel = outputlabel
     self._trainstops = trainstops
示例#15
0
 def __init__(self, outputlabel, fileobj):
   Bolt.__init__(self)
   self._outputlabel = outputlabel
   self._f = fileobj
示例#16
0
 def __init__(self, inputuple, outputfile):
   Bolt.__init__(self)
   self._inputuple = inputuple
   self._printedheader = False
   self._outputfile = outputfile
示例#17
0
 def __init__(self, inputs):
   Bolt.__init__(self)
   self._inputs = inputs
示例#18
0
 def __init__(self, inputuple, outputfile):
     Bolt.__init__(self)
     self._inputuple = inputuple
     self._printedheader = False
     self._outputfile = outputfile