in reply to small change to Text::ParseWords - evil consequences?

I don't see the need for this.
use Text::ParseWords; $str = "a b c"; @f = split /\t/, $str; print scalar @f, "\n"; @f = parse_line('\t', 0, $str); print scalar @f, "\n";
output:
[root@localhost root]# perl temp.pl 4 4
Both parse_line and split handle the null field.