Diff for /cdli/cdliSplitter.py between versions 1.7.2.3 and 1.7.2.4

version 1.7.2.3, 2007/10/19 16:30:58 version 1.7.2.4, 2007/10/24 20:36:06
Line 44  class cdliSplitter: Line 44  class cdliSplitter:
     def process(self, lst):      def process(self, lst):
         """gets a list of strings and returns a list of words"""          """gets a list of strings and returns a list of words"""
                   
         logging.debug("cdliSplitter")           logging.debug("cdliSplitter: %s"%self.indexName) 
         result = []          result = []
         pNum=None          pNum=None
         lineNum=None          lineNum=None
Line 86  class cdliSplitter: Line 86  class cdliSplitter:
                             if not (w==''):                              if not (w==''):
                                 result.append(w)                                  result.append(w)
   
           logging.debug("split '%s' into %s"%(lst,repr(result)))
         return result          return result
   
   

Removed from v.1.7.2.3  
changed lines
  Added in v.1.7.2.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>