##// END OF EJS Templates
revlog: document the `is_inline_index` method...
marmoute -
r51895:4ea60656 default
parent child Browse files
Show More
@@ -291,6 +291,7 b' class revlog:'
291
291
292 @staticmethod
292 @staticmethod
293 def is_inline_index(header_bytes):
293 def is_inline_index(header_bytes):
294 """Determine if a revlog is inline from the initial bytes of the index"""
294 header = INDEX_HEADER.unpack(header_bytes)[0]
295 header = INDEX_HEADER.unpack(header_bytes)[0]
295
296
296 _format_flags = header & ~0xFFFF
297 _format_flags = header & ~0xFFFF
General Comments 0
You need to be logged in to leave comments. Login now