sapling/mercurial/cext
2018-01-09 15:20:46 -08: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 cext: reorder #include 2017-10-02 19:06:00 +01:00
charencode.c parsers: protect some case-folding tables from clang-format 2015-04-21 16:02:23 -04:00
charencode.h encoding: add fast path of jsonescape() (issue5533) 2017-04-23 14:47:52 +09: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 cext: add /* header */ comment to all PyVarObject_HEAD_INIT() calls 2017-10-16 14:49:35 -04:00
mpatch.c cext: reorder #include 2017-10-02 19:06:00 +01:00
osutil.c osutil: add a function to unblock signals 2018-01-03 05:35:56 -08:00
parsers.c phases: drop the list with phase of each rev, always comput phase sets 2017-12-06 15:46:41 +01:00
pathencode.c parsers: switch to policy importer 2016-08-13 12:23:56 +09:00
README.md lib: add READMEs to lib, extlib, cext 2018-01-09 15:20:46 -08:00
revlog.c phases: drop the list with phase of each rev, always comput phase sets 2017-12-06 15:46:41 +01:00
util.h util: add clang-format control comment around struct and format macro 2017-10-04 11:02:44 -04:00

cext

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

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