Re: pyparsing and svg

2007-11-08 Thread Arkanes
Paul McGuire wrote: > On Nov 8, 3:14 am, Donn Ingle <[EMAIL PROTECTED]> wrote: > > >> float = nums + dot + nums >> > > Should be: > > float = Combine(Word(nums) + dot + Word(nums)) > > nums is a string that defines the set of numeric digits for composing > Word instances. nums is not an ex

Re: pyparsing and svg

2007-11-08 Thread Paul McGuire
On Nov 8, 3:14 am, Donn Ingle <[EMAIL PROTECTED]> wrote: > float = nums + dot + nums Should be: float = Combine(Word(nums) + dot + Word(nums)) nums is a string that defines the set of numeric digits for composing Word instances. nums is not an expression by itself. For that matter, I see in y