You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We must revisit all default options of the package to match expected default for modern CSV handling. Changing any default from version 9 is automatically a BC break to be clearly documented.
escape character must default to the empty string; previously was \.
Reader::createFromPath must default to r open mode
Writer::createFromPath must default to r+ open mode
Changing the open mode will be done by removing the createFromPath method from the AbstractCSV class to implement it directly into the Reader and the Writer classes.
Should those classes be made final ❓
The text was updated successfully, but these errors were encountered:
Feature Request
Proposal
We must revisit all default options of the package to match expected default for modern CSV handling. Changing any default from version 9 is automatically a BC break to be clearly documented.
\
.r
open moder+
open modeChanging the open mode will be done by removing the createFromPath method from the AbstractCSV class to implement it directly into the Reader and the Writer classes.
Should those classes be made final ❓
The text was updated successfully, but these errors were encountered: