Mercurial > python-cmd2
view ignoreBug.py @ 214:68c03076c9e7
multiple connections
author | catherine@Elli.myhome.westell.com |
---|---|
date | Mon, 16 Mar 2009 02:46:57 -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