sapling/mercurial/cext
Jun Wu bdbf60f28d xdiff: backport upstream changes
Summary:
I did some extra xdiff changes in upstream, namely:

  - Remove unused features
  - Replace "long" (32-bit in MSVC) with int64_t to support large files
  - Add comment on some key variables

This backports them. It also includes Matt's fixes about Windows compatibility.

Reviewed By: ryanmce

Differential Revision: D7223939

fbshipit-source-id: 9287d5be22dae4ab41b05b3a4c160d836b5714a6
2018-04-13 21:51:48 -07:00
..
__init__.py policy: add "cext" package which will host CPython extension modules 2016-08-12 11:06:14 +09:00
base85.c cext: move braces for control statements to same line 2017-10-02 19:02:43 +01:00
bdiff.c hg: basic support for building hg using buck 2018-04-13 21:50:58 -07:00
charencode.c hg: basic support for building hg using buck 2018-04-13 21:50:58 -07:00
charencode.h hg: basic support for building hg using buck 2018-04-13 21:50:58 -07:00
diffhelpers.c diffhelpers: switch to policy importer 2016-08-13 12:15:49 +09:00
dirs.c cext: reorder #include 2017-10-02 19:06:00 +01:00
manifest.c lazymanifest: do not read uninitialized memory 2018-04-13 21:51:01 -07:00
mpatch.c hg: basic support for building hg using buck 2018-04-13 21:50:58 -07:00
osutil.c osutil: add a function to unblock signals 2018-01-03 05:35:56 -08:00
parsers.c hg: basic support for building hg using buck 2018-04-13 21:50:58 -07:00
pathencode.c fix invalid-shift-base UBSAN in pathencode.c 2018-04-13 21:51:15 -07:00
README.md READMEs: tweaks based on feedback 2018-01-12 12:35:52 -08:00
revlog.c hg: basic support for building hg using buck 2018-04-13 21:50:58 -07:00
util.h hg: basic support for building hg using buck 2018-04-13 21:50:58 -07:00
xdiff.c xdiff: backport upstream changes 2018-04-13 21:51:48 -07:00

cext

Native code used by core Mercurial (not extensions), that depends on Python, lives here.

See also hgext/extlib/README.md, lib/README.md.