mercurial/changegroup.py
changeset 36464 3f0af89e008d
parent 35754 fb0be099063f
child 36465 94709406f10d
--- a/mercurial/changegroup.py	Wed Feb 21 14:36:42 2018 +0530
+++ b/mercurial/changegroup.py	Wed Feb 28 10:21:43 2018 -0800
@@ -32,6 +32,10 @@
 _CHANGEGROUPV2_DELTA_HEADER = "20s20s20s20s20s"
 _CHANGEGROUPV3_DELTA_HEADER = ">20s20s20s20s20sH"
 
+# When narrowing is finalized and no longer subject to format changes,
+# we should move this to just "narrow" or similar.
+NARROW_REQUIREMENT = 'narrowhg-experimental'
+
 readexactly = util.readexactly
 
 def getchunk(stream):