Subject: | list taint speed |
Not sure if you received my email, so here's a ticket.
A suitable way to recover some speed while supporting tainted list
slurping might be:
if list mode
if $^T && ! eval "use Taint::Util"
banana split
else
previous RE method
map { taint } @lines if $^T;
Note that Scaffidi looked at the code (it is very minimal XS),
and Taint::Util should presumably work on any Perl with taint.