Package difflib

The difflib package implements general operation with diff files.

See:
          Description

Interface Summary
DiffAlgorithm The general interface for computing diffs between two texts
 

Class Summary
ChangeDelta Describes the change-delta between original and revised texts.
Chunk Holds the information about the part of text involved in the diff process
DeleteDelta Describes the delete-delta between original and revised texts.
Delta Describes the delta between original and revised texts.
DiffRow Describes the diff row in form [tag, oldLine, newLine) for showing the difference between two texts
DiffRowGenerator This class for generating DiffRows for side-by-sidy view.
DiffRowGenerator.Builder This class used for building the DiffRowGenerator.
DiffUtils Implements the difference and patching engine
InsertDelta Describes the add-delta between original and revised texts.
Patch Describes the patch holding all deltas between the original and revised texts.
StringUtills  
 

Enum Summary
DiffRow.Tag  
 

Exception Summary
DiffException Base class for all exceptions emanating from this package.
PatchFailedException Thrown whenever a delta cannot be applied as a patch to a given text.
 

Package difflib Description

The difflib package implements general operation with diff files.

Author:
Dmitry Naumenko