deepdiff icon indicating copy to clipboard operation
deepdiff copied to clipboard

structured data differ with near-linear time complexity

Results 3 deepdiff issues
Sort by recently updated
recently updated
newest added

The following test code does throws an error as the diff fails to pick up the changes from file A to file B: ```go import ( "context" "encoding/json" "io/ioutil" "testing"...

From @dustmop : Other tests I think would be good to have: insert into the middle of an array: ``` [[1],[2],[4],[5]] [[1],[2],[3],[4],[5]] ``` row of a table completely changing: ```...

These are two different datasets, one with an inlined body. The result of diffing them usually gives expectA, but 6% of the time will give expectB. The difference is that...