mercurial/revlog.py
changeset 42985 bd5858c28bbe
parent 42983 a45d670c2bfc
child 42986 33532939c667
equal deleted inserted replaced
42984:66dc5a522f37 42985:bd5858c28bbe
   111 _maxinline = 131072
   111 _maxinline = 131072
   112 _chunksize = 1048576
   112 _chunksize = 1048576
   113 
   113 
   114 # Flag processors for REVIDX_ELLIPSIS.
   114 # Flag processors for REVIDX_ELLIPSIS.
   115 def ellipsisreadprocessor(rl, text):
   115 def ellipsisreadprocessor(rl, text):
   116     return text, False
   116     return text, False, {}
   117 
   117 
   118 def ellipsiswriteprocessor(rl, text):
   118 def ellipsiswriteprocessor(rl, text):
   119     return text, False
   119     return text, False
   120 
   120 
   121 def ellipsisrawprocessor(rl, text):
   121 def ellipsisrawprocessor(rl, text):