File: __init__.py

package info (click to toggle)
python-diff-match-patch 20241021-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 2,527; sh: 6; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 322 bytes parent folder | download
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)"