in reply to Which module for Parsing?

Regexp::Grammar has an omonous warning about mucking with regex's and conflicting with other modules that do the same.

Since Regexp::Grammar is lexically scoped like much of those modules, this is not that important

Replies are listed 'Best First'.
Re^2: Which module for Parsing?
by John M. Dlugosz (Monsignor) on Apr 14, 2011 at 14:50 UTC
    So what's it mean by "automagically rewrites regexes"? The effect is localized to the scope of the use? It doesn't fiddle with the parser guts just by being loaded? So the warning really means it would conflict with other modules being used in the same scope, not used at all in the program, right?