Setting escape_char to undef appears to break parsing, regardless of the
value of sep_char. In other words, the following will not parse correctly:
$p = Text::CSV_PP->new(
sep_char => '|',
quote_char => undef,
);
This does, however, work in Text::CSV_XS
Thanks,
Matt