comparison mercurial/interfaces/dirstate.py @ 51273:79cd29d598af

dirstate: make the `transaction` argument of `setbranch` mandatory This is deprecated since 6.4. We should drop it now.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 12 Dec 2023 17:08:45 +0100
parents a6e0b7d4ae9d
children f4733654f144
comparison
equal deleted inserted replaced
51272:c4cbb515b006 51273:79cd29d598af
121 returned by the call. 121 returned by the call.
122 122
123 See localrepo.setparents() 123 See localrepo.setparents()
124 """ 124 """
125 125
126 def setbranch(branch, transaction=None): 126 def setbranch(branch, transaction):
127 pass 127 pass
128 128
129 def invalidate(): 129 def invalidate():
130 """Causes the next access to reread the dirstate. 130 """Causes the next access to reread the dirstate.
131 131