# HG changeset patch # User Pierre-Yves David # Date 2019-09-09 12:03:12 # Node ID 21025a4107d4fa77e7079204e42cedcf590344ce # Parent a12a9af7536cc696dc9ae6e17e2295f469443a28 sidedata: add a new module with basic documentation For now the storage strategy is very simple. We can augment it in the future if needed. Code to actually support what is described will be introduced in later changesets. Differential Revision: https://phab.mercurial-scm.org/D6889 diff --git a/mercurial/revlogutils/sidedata.py b/mercurial/revlogutils/sidedata.py new file mode 100644 --- /dev/null +++ b/mercurial/revlogutils/sidedata.py @@ -0,0 +1,34 @@ +# sidedata.py - Logic around store extra data alongside revlog revisions +# +# Copyright 2019 Pierre-Yves David + sidedata (repeated N times): + + + + + normal raw text: + + +This is a simple and effective format. It should be enought to experiment with +the concept. +""" + +from __future__ import absolute_import