##// END OF EJS Templates
git: correct some signature mismatches between dirstate and the Protocol class...
Matt Harbison -
r52817:51be8bf8 default
parent child Browse files
Show More
@@ -243,7 +243,7 b' class gitdirstate:'
243 return DirstateItem()
243 return DirstateItem()
244 return entry
244 return entry
245
245
246 def normalize(self, path):
246 def normalize(self, path, isknown=False, ignoremissing=False):
247 normed = util.normcase(path)
247 normed = util.normcase(path)
248 assert normed == path, b"TODO handling of case folding: %s != %s" % (
248 assert normed == path, b"TODO handling of case folding: %s != %s" % (
249 normed,
249 normed,
@@ -262,11 +262,13 b' class gitdirstate:'
262 # # TODO what the heck is this
262 # # TODO what the heck is this
263 _filecache = set()
263 _filecache = set()
264
264
265 @property
265 def is_changing_parents(self):
266 def is_changing_parents(self):
266 # TODO: we need to implement the context manager bits and
267 # TODO: we need to implement the context manager bits and
267 # correctly stage/revert index edits.
268 # correctly stage/revert index edits.
268 return False
269 return False
269
270
271 @property
270 def is_changing_any(self):
272 def is_changing_any(self):
271 # TODO: we need to implement the context manager bits and
273 # TODO: we need to implement the context manager bits and
272 # correctly stage/revert index edits.
274 # correctly stage/revert index edits.
General Comments 0
You need to be logged in to leave comments. Login now