Mercurial > python-cmd2
view ignoreBug.py @ 395:9f9c69fbb78f
swallow xclip error
author | catherine.devlin@gmail.com |
---|---|
date | Tue, 07 Sep 2010 07:25:49 -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