Mercurial > hg
view tests/revnamesext.py @ 34652:174d115d8104
bdiff: include compat.h in header to define ssize_t
Before ff4c9c6263de, compat.h was included first so it happened to work.
But we shouldn't rely on the include order.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Fri, 13 Oct 2017 22:38:24 +0900 |
parents | 46fa46608ca5 |
children | 086fc71fbb09 |
line wrap: on
line source
# Dummy extension to define a namespace containing revision names from __future__ import absolute_import from mercurial import ( namespaces, ) def reposetup(ui, repo): names = {'r%d' % rev: repo[rev].node() for rev in repo} namemap = lambda r, name: names.get(name) nodemap = lambda r, node: ['r%d' % repo[node].rev()] ns = namespaces.namespace('revnames', templatename='revname', logname='revname', listnames=lambda r: names.keys(), namemap=namemap, nodemap=nodemap) repo.names.addnamespace(ns)