Mercurial > python-cmd2
view ignoreBug.py @ 229:caa475678e24
synch to dellzilla
author | catherine@Elli.myhome.westell.com |
---|---|
date | Mon, 23 Mar 2009 10:02:32 -0400 |
parents | 2377461a35f3 |
children |
line wrap: on
line source
from pyparsing import * teststr = 'please /* ignoreme: | oops */ findme: | kthx' parser = Word(printables)('leadWord') + SkipTo('|')('statement') print parser.parseString(teststr).statement parser.ignore(cStyleComment) print parser.parseString(teststr).statement parser = Combine(parser) print parser.parseString(teststr).statement parser.ignore(cStyleComment) print parser.parseString(teststr).statement