File: __init__.py

package info (click to toggle)
python-diff-match-patch 20200713-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 416 kB
  • sloc: python: 4,937; sh: 6; makefile: 3
file content (6 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
import sys

if sys.version_info >= (3, 0):
    from .diff_match_patch_test import DiffTest, MatchTest, PatchTest
else:
    from .diff_match_patch_test_py2 import DiffTest, MatchTest, PatchTest