Mercurial > public > mercurial-scm > hg
diff mercurial/repository.py @ 38835:a232e6744ba3
narrow: move requirement constant from changegroup to repository
As suggested by Gregory Szorc.
Differential Revision: https://phab.mercurial-scm.org/D4094
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Fri, 03 Aug 2018 11:02:34 -0700 |
parents | 0db41eb0a3ac |
children | b518d495a560 |
line wrap: on
line diff
--- a/mercurial/repository.py Fri Aug 03 12:35:23 2018 -0700 +++ b/mercurial/repository.py Fri Aug 03 11:02:34 2018 -0700 @@ -15,6 +15,10 @@ interfaceutil, ) +# When narrowing is finalized and no longer subject to format changes, +# we should move this to just "narrow" or similar. +NARROW_REQUIREMENT = 'narrowhg-experimental' + class ipeerconnection(interfaceutil.Interface): """Represents a "connection" to a repository.