comparison mercurial/interfaces/repository.py @ 48604:348d2c6b5048

requirements: remove the `localrepo.supportedformat` attribute It is not longer used anywhere. Differential Revision: https://phab.mercurial-scm.org/D12035
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 17 Jan 2022 19:29:41 +0100
parents c514936d92b4
children bf3da4e02087
comparison
equal deleted inserted replaced
48603:3a8bc0b48e51 48604:348d2c6b5048
1493 ) 1493 )
1494 nullid = interfaceutil.Attribute( 1494 nullid = interfaceutil.Attribute(
1495 """null revision for the hash function used by the repository.""" 1495 """null revision for the hash function used by the repository."""
1496 ) 1496 )
1497 1497
1498 supportedformats = interfaceutil.Attribute(
1499 """Set of requirements that apply to stream clone.
1500
1501 This is actually a class attribute and is shared among all instances.
1502 """
1503 )
1504
1505 supported = interfaceutil.Attribute( 1498 supported = interfaceutil.Attribute(
1506 """Set of requirements that this repo is capable of opening.""" 1499 """Set of requirements that this repo is capable of opening."""
1507 ) 1500 )
1508 1501
1509 requirements = interfaceutil.Attribute( 1502 requirements = interfaceutil.Attribute(