git.fiddlerwoaroof.com
unsorted/pythonsnippets_0043.py
60b28ac5
     @abc.abstractmethod
     def process_chunk(self, chunk): return chunk
 
 
 
 import re
 class Grep(Pipe):
     def init(self, regex, delim='\n', *_, **__):
         self.__re = re.compile(regex)
9c112cd3
         self.__delim = delim