Code Search is a tool for indexing and then performing regular
expression searches over large bodies of source code. It is a set of
command-line programs written in Go.
For background and an overview of the commands, see
http://swtch.com/~rsc/regexp/regexp4.html.
Comment:
Python implementation of the patiencediff algorithm
Description:
This package contains the implementation of the patiencediff algorithm, as
first described by Bram Cohen.
Like Python's difflib, this module provides both a convience unified_diff
function for the generation of unified diffs of text files as well as a
SequenceMatcher that can be used on arbitrary lists.
Patiencediff provides a good balance of performance, nice output for humans,
and implementation simplicity.
The code in this package was extracted from the Bazaar code base.
The package comes with two implementations:
- A Python implementation (_patiencediff_py.py); this implementation only
requires a Python interpreter and is the more readable version of the two
- A C implementation implementation (_patiencediff_c.c); this implementation is
faster, but requires a C compiler and is less readable
Maintainer: The OpenBSD ports mailing-list <ports@openbsd.org>
WWW: https://pypi.org/project/patiencediff/
moved the libc back to the main group as we're > 0.2.63 now as suggested
by sthen. Removed the related comment too.
Tested on amd64 by me and sparc64 by jca
ok sthen@ jca@
- Add support for xmltodict force_list definition for xq CLI (#95)
- Support explicit doc markers (#93)
- Ensure proper ordering of help messages (#90)
armv7, this should save around 40h overall build time, and makes it more
visible to anyone working on the port that they are indeed broken on the
arch. OK phessler@ naddy@
Of note because the port is important to the architecture and
self-hosted builds are a good thing: building u-boot on armv7 fails
with an Internal Compiler Error (SIGBUS) in lib/time.c, it would be
particularly nice if someone has an idea how to fix this!
"This is a bug that if the look-behind contains a branch with a
character length of 0 and an anchor is included in the branch, the whole
look-behind is ignored."