Subject: | Regression for "fromCSV" since 1.52 |
A regression crept in from 1.51 to 1.52
A PC file with EOL=CR+LF carries an extra CR when parsed as a CSV file.
1.51 = All is well, the trailing CR is consumed and does not appear as
column value. Verified the good behavior was there for all versions
prior as well.
1.52 = A trailign CR is retained.
The issue can be fixed in 1.54 by commenting one line in Table.pm
929c929
< binmode $SRC;
---
Show quoted text
> #binmode $SRC;
Please review and confirm and bless the change.
Thanks,
Ramana