* "Iain King" <[EMAIL PROTECTED]> wrote: > Ah, doh! Of course. Oh well then... still, doesn't python's RE > engine support named groups? That would be cumbersome, but would allow > you to go above 100...
The named groups are built on top of numbered captures. They are mapped by the parser and the match instance's group method. The regex matcher itself never sees these names. nd -- http://mail.python.org/mailman/listinfo/python-list