If last field has unclosed quote, then it will not be parsed properly
Open
bug
fread
low priority
- Dominant language
- C++
- Stars
- 1.9k
- Forks
- 164
- Avg merge
- 7h 31m
- Merged PRs (30d)
- 1
Description
```
>>> dt.fread("A,B,C\n1,2,3\n3,4,5\n0,0,\"foo\n\n").topython()
[[1, 3, 0], [2, 4, 0], ['3', '5', '"foo\n\n']]
```
Last field should have been parsed as simply `'"foo'` (under QR 3).
Contributor guide
Assessment
This issue has not been assessed yet.