comparison mercurial/localrepo.py @ 48625:3a8bc0b48e51

requirements: sort _basesupported This will make the next changeset clearer. Differential Revision: https://phab.mercurial-scm.org/D12034
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 17 Jan 2022 22:48:16 +0100
parents 66b59fbb0cdd
children 348d2c6b5048
comparison
equal deleted inserted replaced
48624:66b59fbb0cdd 48625:3a8bc0b48e51
1286 requirementsmod.BOOKMARKS_IN_STORE_REQUIREMENT, 1286 requirementsmod.BOOKMARKS_IN_STORE_REQUIREMENT,
1287 requirementsmod.SHARESAFE_REQUIREMENT, 1287 requirementsmod.SHARESAFE_REQUIREMENT,
1288 requirementsmod.DIRSTATE_V2_REQUIREMENT, 1288 requirementsmod.DIRSTATE_V2_REQUIREMENT,
1289 } 1289 }
1290 _basesupported = supportedformats | { 1290 _basesupported = supportedformats | {
1291 requirementsmod.DOTENCODE_REQUIREMENT,
1292 requirementsmod.FNCACHE_REQUIREMENT,
1293 requirementsmod.INTERNAL_PHASE_REQUIREMENT,
1294 requirementsmod.RELATIVE_SHARED_REQUIREMENT,
1295 requirementsmod.SHARED_REQUIREMENT,
1296 requirementsmod.SPARSE_REQUIREMENT,
1291 requirementsmod.STORE_REQUIREMENT, 1297 requirementsmod.STORE_REQUIREMENT,
1292 requirementsmod.FNCACHE_REQUIREMENT,
1293 requirementsmod.SHARED_REQUIREMENT,
1294 requirementsmod.RELATIVE_SHARED_REQUIREMENT,
1295 requirementsmod.DOTENCODE_REQUIREMENT,
1296 requirementsmod.SPARSE_REQUIREMENT,
1297 requirementsmod.INTERNAL_PHASE_REQUIREMENT,
1298 } 1298 }
1299 1299
1300 # list of prefix for file which can be written without 'wlock' 1300 # list of prefix for file which can be written without 'wlock'
1301 # Extensions should extend this list when needed 1301 # Extensions should extend this list when needed
1302 _wlockfreeprefix = { 1302 _wlockfreeprefix = {