├── .github └── workflows │ ├── package.yml │ └── test.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── img ├── darkbg-side-by-side-dark.png ├── darkbg-side-by-side-default.png ├── darkbg-unified-dark.png ├── darkbg-unified-default.png ├── lightbg-side-by-side-default.png ├── lightbg-side-by-side-light.png ├── lightbg-unified-default.png └── lightbg-unified-light.png ├── requirements-dev.txt ├── setup.py ├── tests ├── README ├── crlf │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── diff-of-diff │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── diff-ru-bin │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── diff-ru │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── evil-udiff │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── git-bin │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── git-log │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── git-perm │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── git │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── hg-log │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── large-hunk │ └── tao.diff ├── latin1 │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── perforce │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── profile.sh ├── regression.sh ├── strange │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── svn-log │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── svn-merge │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── svn-property │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── svn │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap ├── test_ydiff.py └── wide-chars │ ├── in.diff │ ├── out.side-by-side │ ├── out.unified │ ├── out.w70.nowrap │ └── out.w70.wrap └── ydiff.py /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/README.rst -------------------------------------------------------------------------------- /img/darkbg-side-by-side-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/darkbg-side-by-side-dark.png -------------------------------------------------------------------------------- /img/darkbg-side-by-side-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/darkbg-side-by-side-default.png -------------------------------------------------------------------------------- /img/darkbg-unified-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/darkbg-unified-dark.png -------------------------------------------------------------------------------- /img/darkbg-unified-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/darkbg-unified-default.png -------------------------------------------------------------------------------- /img/lightbg-side-by-side-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/lightbg-side-by-side-default.png -------------------------------------------------------------------------------- /img/lightbg-side-by-side-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/lightbg-side-by-side-light.png -------------------------------------------------------------------------------- /img/lightbg-unified-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/lightbg-unified-default.png -------------------------------------------------------------------------------- /img/lightbg-unified-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/img/lightbg-unified-light.png -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | Pygments 2 | build 3 | coverage 4 | docutils<=0.20.1 5 | pycodestyle 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/README -------------------------------------------------------------------------------- /tests/crlf/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/crlf/in.diff -------------------------------------------------------------------------------- /tests/crlf/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/crlf/out.side-by-side -------------------------------------------------------------------------------- /tests/crlf/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/crlf/out.unified -------------------------------------------------------------------------------- /tests/crlf/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/crlf/out.w70.nowrap -------------------------------------------------------------------------------- /tests/crlf/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/crlf/out.w70.wrap -------------------------------------------------------------------------------- /tests/diff-of-diff/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-of-diff/in.diff -------------------------------------------------------------------------------- /tests/diff-of-diff/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-of-diff/out.side-by-side -------------------------------------------------------------------------------- /tests/diff-of-diff/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-of-diff/out.unified -------------------------------------------------------------------------------- /tests/diff-of-diff/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-of-diff/out.w70.nowrap -------------------------------------------------------------------------------- /tests/diff-of-diff/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-of-diff/out.w70.wrap -------------------------------------------------------------------------------- /tests/diff-ru-bin/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru-bin/in.diff -------------------------------------------------------------------------------- /tests/diff-ru-bin/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru-bin/out.side-by-side -------------------------------------------------------------------------------- /tests/diff-ru-bin/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru-bin/out.unified -------------------------------------------------------------------------------- /tests/diff-ru-bin/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru-bin/out.w70.nowrap -------------------------------------------------------------------------------- /tests/diff-ru-bin/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru-bin/out.w70.wrap -------------------------------------------------------------------------------- /tests/diff-ru/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru/in.diff -------------------------------------------------------------------------------- /tests/diff-ru/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru/out.side-by-side -------------------------------------------------------------------------------- /tests/diff-ru/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru/out.unified -------------------------------------------------------------------------------- /tests/diff-ru/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru/out.w70.nowrap -------------------------------------------------------------------------------- /tests/diff-ru/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/diff-ru/out.w70.wrap -------------------------------------------------------------------------------- /tests/evil-udiff/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/evil-udiff/in.diff -------------------------------------------------------------------------------- /tests/evil-udiff/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/evil-udiff/out.side-by-side -------------------------------------------------------------------------------- /tests/evil-udiff/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/evil-udiff/out.unified -------------------------------------------------------------------------------- /tests/evil-udiff/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/evil-udiff/out.w70.nowrap -------------------------------------------------------------------------------- /tests/evil-udiff/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/evil-udiff/out.w70.wrap -------------------------------------------------------------------------------- /tests/git-bin/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-bin/in.diff -------------------------------------------------------------------------------- /tests/git-bin/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-bin/out.side-by-side -------------------------------------------------------------------------------- /tests/git-bin/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-bin/out.unified -------------------------------------------------------------------------------- /tests/git-bin/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-bin/out.w70.nowrap -------------------------------------------------------------------------------- /tests/git-bin/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-bin/out.w70.wrap -------------------------------------------------------------------------------- /tests/git-log/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-log/in.diff -------------------------------------------------------------------------------- /tests/git-log/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-log/out.side-by-side -------------------------------------------------------------------------------- /tests/git-log/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-log/out.unified -------------------------------------------------------------------------------- /tests/git-log/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-log/out.w70.nowrap -------------------------------------------------------------------------------- /tests/git-log/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-log/out.w70.wrap -------------------------------------------------------------------------------- /tests/git-perm/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-perm/in.diff -------------------------------------------------------------------------------- /tests/git-perm/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-perm/out.side-by-side -------------------------------------------------------------------------------- /tests/git-perm/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-perm/out.unified -------------------------------------------------------------------------------- /tests/git-perm/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-perm/out.w70.nowrap -------------------------------------------------------------------------------- /tests/git-perm/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git-perm/out.w70.wrap -------------------------------------------------------------------------------- /tests/git/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git/in.diff -------------------------------------------------------------------------------- /tests/git/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git/out.side-by-side -------------------------------------------------------------------------------- /tests/git/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git/out.unified -------------------------------------------------------------------------------- /tests/git/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git/out.w70.nowrap -------------------------------------------------------------------------------- /tests/git/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/git/out.w70.wrap -------------------------------------------------------------------------------- /tests/hg-log/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/hg-log/in.diff -------------------------------------------------------------------------------- /tests/hg-log/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/hg-log/out.side-by-side -------------------------------------------------------------------------------- /tests/hg-log/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/hg-log/out.unified -------------------------------------------------------------------------------- /tests/hg-log/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/hg-log/out.w70.nowrap -------------------------------------------------------------------------------- /tests/hg-log/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/hg-log/out.w70.wrap -------------------------------------------------------------------------------- /tests/large-hunk/tao.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/large-hunk/tao.diff -------------------------------------------------------------------------------- /tests/latin1/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/latin1/in.diff -------------------------------------------------------------------------------- /tests/latin1/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/latin1/out.side-by-side -------------------------------------------------------------------------------- /tests/latin1/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/latin1/out.unified -------------------------------------------------------------------------------- /tests/latin1/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/latin1/out.w70.nowrap -------------------------------------------------------------------------------- /tests/latin1/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/latin1/out.w70.wrap -------------------------------------------------------------------------------- /tests/perforce/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/perforce/in.diff -------------------------------------------------------------------------------- /tests/perforce/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/perforce/out.side-by-side -------------------------------------------------------------------------------- /tests/perforce/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/perforce/out.unified -------------------------------------------------------------------------------- /tests/perforce/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/perforce/out.w70.nowrap -------------------------------------------------------------------------------- /tests/perforce/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/perforce/out.w70.wrap -------------------------------------------------------------------------------- /tests/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/profile.sh -------------------------------------------------------------------------------- /tests/regression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/regression.sh -------------------------------------------------------------------------------- /tests/strange/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/strange/in.diff -------------------------------------------------------------------------------- /tests/strange/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/strange/out.side-by-side -------------------------------------------------------------------------------- /tests/strange/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/strange/out.unified -------------------------------------------------------------------------------- /tests/strange/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/strange/out.w70.nowrap -------------------------------------------------------------------------------- /tests/strange/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/strange/out.w70.wrap -------------------------------------------------------------------------------- /tests/svn-log/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-log/in.diff -------------------------------------------------------------------------------- /tests/svn-log/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-log/out.side-by-side -------------------------------------------------------------------------------- /tests/svn-log/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-log/out.unified -------------------------------------------------------------------------------- /tests/svn-log/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-log/out.w70.nowrap -------------------------------------------------------------------------------- /tests/svn-log/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-log/out.w70.wrap -------------------------------------------------------------------------------- /tests/svn-merge/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-merge/in.diff -------------------------------------------------------------------------------- /tests/svn-merge/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-merge/out.side-by-side -------------------------------------------------------------------------------- /tests/svn-merge/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-merge/out.unified -------------------------------------------------------------------------------- /tests/svn-merge/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-merge/out.w70.nowrap -------------------------------------------------------------------------------- /tests/svn-merge/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-merge/out.w70.wrap -------------------------------------------------------------------------------- /tests/svn-property/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-property/in.diff -------------------------------------------------------------------------------- /tests/svn-property/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-property/out.side-by-side -------------------------------------------------------------------------------- /tests/svn-property/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-property/out.unified -------------------------------------------------------------------------------- /tests/svn-property/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-property/out.w70.nowrap -------------------------------------------------------------------------------- /tests/svn-property/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn-property/out.w70.wrap -------------------------------------------------------------------------------- /tests/svn/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn/in.diff -------------------------------------------------------------------------------- /tests/svn/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn/out.side-by-side -------------------------------------------------------------------------------- /tests/svn/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn/out.unified -------------------------------------------------------------------------------- /tests/svn/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn/out.w70.nowrap -------------------------------------------------------------------------------- /tests/svn/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/svn/out.w70.wrap -------------------------------------------------------------------------------- /tests/test_ydiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/test_ydiff.py -------------------------------------------------------------------------------- /tests/wide-chars/in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/wide-chars/in.diff -------------------------------------------------------------------------------- /tests/wide-chars/out.side-by-side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/wide-chars/out.side-by-side -------------------------------------------------------------------------------- /tests/wide-chars/out.unified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/wide-chars/out.unified -------------------------------------------------------------------------------- /tests/wide-chars/out.w70.nowrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/wide-chars/out.w70.nowrap -------------------------------------------------------------------------------- /tests/wide-chars/out.w70.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/tests/wide-chars/out.w70.wrap -------------------------------------------------------------------------------- /ydiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymattw/ydiff/HEAD/ydiff.py --------------------------------------------------------------------------------