equal
deleted
inserted
replaced
93 # * 8 bytes: size of index-data |
93 # * 8 bytes: size of index-data |
94 # * 8 bytes: pending size of index-data |
94 # * 8 bytes: pending size of index-data |
95 # * 8 bytes: size of data |
95 # * 8 bytes: size of data |
96 # * 8 bytes: pending size of data |
96 # * 8 bytes: pending size of data |
97 # * 1 bytes: default compression header |
97 # * 1 bytes: default compression header |
98 S_HEADER = struct.Struct(constants.INDEX_HEADER.format + 'BBLLLLc') |
98 S_HEADER = struct.Struct( |
|
99 pycompat.sysstr(constants.INDEX_HEADER.format) + 'BBLLLLc' |
|
100 ) |
99 |
101 |
100 |
102 |
101 class RevlogDocket(object): |
103 class RevlogDocket(object): |
102 """metadata associated with revlog""" |
104 """metadata associated with revlog""" |
103 |
105 |