Reputation: 31
I checked out the source code of Python 2.6, and I want to study the diff implementation. However, I can not find the right source file. Could any one point me to whichever source file contains the algorithm implementation?
Upvotes: 2
Views: 4339
Reputation: 601361
If by "diff implementation in Python" you mean the difflib
module, then here is the source.
There is also a simple diff
implementation based on this module in the Python source distribution.
Upvotes: 6