What I want is to calculate the diff delta of two texts(original and new), store the original text the delta, then expect to restore the new text. So that I can store different versions of one text with minimum space.
With Python's difflib, this could be done with ndiff and restore; however the delta of ndiff contains everything of the new text, which is at odds with my intention.
unified_diff offers a more compact delta by showing only the difference, which is desirable, but I can't find a way to restore the new text with its delta and the original one.
I've read some discussions like this one, which said the delta from unified_diff alone can possibly be used to restore either text, but what I'm not sure is why not with the original text.