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
dimapa seems to be able to generate diffs with empty strings in them instead of the actual content of the diff when doing semantic cleanup. Something we found in production, when diffing is that the following script will return 10 lines fewer than were originally in the file:
Trying with python 3 diff_match_patch and the original implementation of diff_match_patch in ruby, I found that the python 3 version works just fine in this scenario, but none of the ruby versions do, so the algorithm works, but there is a bug in the implementation.
The text was updated successfully, but these errors were encountered:
dimapa
seems to be able to generate diffs with empty strings in them instead of the actual content of the diff when doing semantic cleanup. Something we found in production, when diffing is that the following script will return 10 lines fewer than were originally in the file:Trying with python 3 diff_match_patch and the original implementation of diff_match_patch in ruby, I found that the python 3 version works just fine in this scenario, but none of the ruby versions do, so the algorithm works, but there is a bug in the implementation.
The text was updated successfully, but these errors were encountered: