We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When columns are very large, you get this error from csv package:
csv
_csv.Error: field larger than field limit (131072)
Anyway, just inserting this line solves the problem, enlarging the field size limit:
csv.field_size_limit(sys.maxsize)
Might you enlarge the field_size_limit or add a command line option to do it? Thank You Martino
field_size_limit
The text was updated successfully, but these errors were encountered:
Set csv field_size_limit to sys.maxsize
42e42b4
To proactively address TabViewer/tabview#150
No branches or pull requests
When columns are very large, you get this error from
csv
package:Anyway, just inserting this line solves the problem, enlarging the field size limit:
Might you enlarge the
field_size_limit
or add a command line option to do it?Thank You
Martino
The text was updated successfully, but these errors were encountered: