blob: 18ac58aadbf11d126355f6e8f248e5b29c18ab50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
"""
Repackaging of Google's Diff Match and Patch libraries.
Offers robust algorithms to perform the operations required for synchronizing plain text.
"""
from .__version__ import __version__
from .diff_match_patch import __author__, __doc__, diff_match_patch, patch_obj
__packager__ = "Amethyst Reese (amy@noswap.com)"
|