-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a bug where the reader was double counting the CRLF newline seq (#…
…1064) Hi, can you please a fix for the line number in the metadata generated by the reader. It fixes #1063. We now check the char at -2 only if it’s: - `\n` (for `\nC` or `\r\nC` case) - `\r` (for the `\rC`, but not `\r\n`, case). where `C` is any other char. Added tests for the same. Thanks --------- Co-authored-by: ikappaki <ikappaki@users.noreply.github.com>
- Loading branch information
Showing
3 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters