Ok, I'll admit I've only started to read the 4.0 docs. I'm trying to see if
my 3.x lepl code will still work. It doesn't. It appears to be choking on a
'\n' character.
Here's the relevant part of my code (I think):
name = Word() > 'name'
datetime = Drop(Literal('datetime.datetime')+'(')+Word(AnyBut(')'))+Drop(')')
value = Drop("'") & Word(AnyBut("'")) & Drop("'") | Word() | datetime >
'value'
arg = name & '=' & value > make_dict
spaces = ~Whitespace()[:]
with Separator(spaces):
sep = ','
args = arg[1:,Drop(sep)]
l = Drop('Namespace(') & args & Drop(')') > combine
Here's the error message:
FullFirstMatchException: The match failed at '
',
Line 1, character 640 of str: "Namespace(agcEnable=False, alph....
I'm wondering if somebody might just know right off what change could cause
this.
--
You received this message because you are subscribed to the Google Groups "lepl" group.
To post to this group, send email to
le...@googlegroups.com.
To unsubscribe from this group, send email to
lepl+uns...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/lepl?hl=en.