Mercurial > python-cmd2
view ignoreBug.py @ 417:db32ab37051b
use exception inheritence instead of listing all optparse exceptions
author | catherine.devlin@gmail.com |
---|---|
date | Wed, 02 Feb 2011 08:00:26 -0500 |
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