예제 #1
0
 def process(self, input):
     while True:
         input = Decorator.process(self, input)
         
         if input is None:
             break
예제 #2
0
 def process(self, input):
     result_list = Decorator.process(self, input)
     
     for result in result_list:
         yield result
예제 #3
0
 def process(self, input):
     res = string.split(Decorator.process(self, input), " ")
     for x in res:
         yield x
예제 #4
0
 def process(self, input):
     generator = Decorator.process(self, input)
     
     result = list(generator)
     return result