changeset 47666 | e53256a9f9c5 |
parent 47665 | a4443f66be6a |
child 47667 | d06ced90c80f |
--- a/mercurial/pure/parsers.py Tue Jul 13 13:06:50 2021 +0200 +++ b/mercurial/pure/parsers.py Mon Jul 19 06:29:30 2021 +0200 @@ -81,6 +81,14 @@ mtime=mtime, ) + def set_possibly_dirty(self): + """Mark a file as "possibly dirty" + + This means the next status call will have to actually check its content + to make sure it is correct. + """ + self._mtime = AMBIGUOUS_TIME + def __getitem__(self, idx): if idx == 0 or idx == -4: msg = b"do not use item[x], use item.state"