Hello,
(new here)
Below an extension to standard module re. The point is to allow writing and
testing sub-expressions individually, then nest them into a super-expression.
More or less like using a parser generator -- but keeping regex grammar and
power.
I used the format {sub_expr_name}: as i
Le Thu, 12 Mar 2009 11:13:33 -0400,
Kent Johnson s'exprima ainsi:
> Because local name lookup is faster than global name lookup. Local
> variables are stored in an array in the stack frame and accessed by
> index. Global names are stored in a dict and accessed with dict access
> (dict.__getitem__