comparison hgext/git/dirstate.py @ 50022:e333cc169c45

dirstate: rename `pendingparentchange` to `is_changing_parents` This is clearer and more inline witht he other change we did.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 30 Jan 2023 19:21:34 +0100
parents 7a8bfc05b691
children e1cff85484e2
comparison
equal deleted inserted replaced
50021:4e955a7a6a55 50022:e333cc169c45
258 return {} 258 return {}
259 259
260 # # TODO what the heck is this 260 # # TODO what the heck is this
261 _filecache = set() 261 _filecache = set()
262 262
263 def pendingparentchange(self): 263 def is_changing_parents(self):
264 # TODO: we need to implement the context manager bits and 264 # TODO: we need to implement the context manager bits and
265 # correctly stage/revert index edits. 265 # correctly stage/revert index edits.
266 return False 266 return False
267 267
268 def write(self, tr): 268 def write(self, tr):