comparison mercurial/interfaces/repository.py @ 49753:ff7134e03629

peer: have `repo.peer` take an optional `path` argument We are ready to start to actually set the value now.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 03 Dec 2022 00:16:07 +0100
parents 611ccb631cbc
children f34887316f1f
comparison
equal deleted inserted replaced
49752:611ccb631cbc 49753:ff7134e03629
1610 ) 1610 )
1611 1611
1612 def close(): 1612 def close():
1613 """Close the handle on this repository.""" 1613 """Close the handle on this repository."""
1614 1614
1615 def peer(): 1615 def peer(path=None):
1616 """Obtain an object conforming to the ``peer`` interface.""" 1616 """Obtain an object conforming to the ``peer`` interface."""
1617 1617
1618 def unfiltered(): 1618 def unfiltered():
1619 """Obtain an unfiltered/raw view of this repo.""" 1619 """Obtain an unfiltered/raw view of this repo."""
1620 1620