https://github.com/zapier/diff-match-patch-cython
A quick hack that speeds up dmp by about ~3x.
https://github.com/zapier/diff-match-patch-cython
Last synced: 8 months ago
JSON representation
A quick hack that speeds up dmp by about ~3x.
- Host: GitHub
- URL: https://github.com/zapier/diff-match-patch-cython
- Owner: zapier
- License: apache-2.0
- Created: 2016-01-10T22:47:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-10T23:21:04.000Z (over 10 years ago)
- Last Synced: 2025-01-26T11:08:35.181Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 531 KB
- Stars: 1
- Watchers: 58
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.original.txt
- Changelog: CHANGES.rst
Awesome Lists containing this project
README
Diff, Match and Patch Library
http://code.google.com/p/google-diff-match-patch/
Neil Fraser
This library is currently available in seven different ports, all using the same API.
Every version includes a full set of unit tests.
C++:
* Ported by Mike Slemmer.
* Currently requires the Qt library.
C#:
* Ported by Matthaeus G. Chajdas.
Java:
* Included is both the source and a Maven package.
JavaScript:
* diff_match_patch_uncompressed.js is the human-readable version.
* diff_match_patch.js has been compressed using Google's internal JavaScript compressor.
External hackers are recommended to use http://dean.edwards.name/packer/
Lua:
* Ported by Duncan Cross.
* Does not support line-mode speedup.
Objective C:
* Ported by Jan Weiss.
* Includes speed test (this is a separate bundle for other languages).
Python:
* Two versions, one for Python 2.x, the other for Python 3.x.
* Runs 10x faster under PyPy than CPython.
Demos:
* Separate demos for Diff, Match and Patch in JavaScript.