mercurial/revlogutils/rewrite.py
changeset 47466 f7a94e2d4470
parent 47465 bc8536e09a20
child 47467 3ab267f0cbe4
equal deleted inserted replaced
47465:bc8536e09a20 47466:f7a94e2d4470
   244                                     new_sidedata_file,
   244                                     new_sidedata_file,
   245                                 )
   245                                 )
   246 
   246 
   247         # we dont need to open the old index file since its content already
   247         # we dont need to open the old index file since its content already
   248         # exist in a usable form in `old_index`.
   248         # exist in a usable form in `old_index`.
   249         with all_files() as (
   249         with all_files() as open_files:
   250             old_data_file,
   250             (
   251             old_sidedata_file,
   251                 old_data_file,
   252             new_index_file,
   252                 old_sidedata_file,
   253             new_data_file,
   253                 new_index_file,
   254             new_sidedata_file,
   254                 new_data_file,
   255         ):
   255                 new_sidedata_file,
       
   256             ) = open_files
   256             new_index_file.seek(0, os.SEEK_END)
   257             new_index_file.seek(0, os.SEEK_END)
   257             assert new_index_file.tell() == index_cutoff
   258             assert new_index_file.tell() == index_cutoff
   258             new_data_file.seek(0, os.SEEK_END)
   259             new_data_file.seek(0, os.SEEK_END)
   259             assert new_data_file.tell() == data_cutoff
   260             assert new_data_file.tell() == data_cutoff
   260             new_sidedata_file.seek(0, os.SEEK_END)
   261             new_sidedata_file.seek(0, os.SEEK_END)