mercurial/revlogutils/sidedata.py
changeset 43142 beed7ce61681
parent 43077 687b865b95ad
child 43506 9f70512ae2cf
--- a/mercurial/revlogutils/sidedata.py	Sun Oct 06 23:36:51 2019 -0400
+++ b/mercurial/revlogutils/sidedata.py	Sun Oct 06 23:36:51 2019 -0400
@@ -48,6 +48,12 @@
 SD_TEST6 = 6
 SD_TEST7 = 7
 
+# key to store copies related information
+SD_P1COPIES = 8
+SD_P2COPIES = 9
+SD_FILESADDED = 10
+SD_FILESREMOVED = 11
+
 # internal format constant
 SIDEDATA_HEADER = struct.Struct(r'>H')
 SIDEDATA_ENTRY = struct.Struct(r'>HL20s')