Re: [Pyparsing] pyparsing svg - noob
Brought to you by:
ptmcg
From: Donn <don...@gm...> - 2007-11-08 10:24:31
|
Paul - thanks again for the accurate help. > phrase = OneOrMore(command("command") + Group(OneOrMore(couple))("coords") > ) Gives me an error: phrase = OneOrMore(command("command") + Group(OneOrMore(couple)) ("coords") ) TypeError: 'MatchFirst' object is not callable But I have not had a chance to get the latest pyparsing installed yet. Using your other suggestions seems to be working, so I'll keep hacking. Best, \d |