mercurial/pure/parsers.py
changeset 47532 ccbabaee5c36
parent 47531 f5b8f0b9c129
child 47536 8e4b9fe31334
--- a/mercurial/pure/parsers.py	Sun Jul 04 02:12:54 2021 +0200
+++ b/mercurial/pure/parsers.py	Sun Jul 04 02:13:53 2021 +0200
@@ -153,6 +153,10 @@
         """return a "mtime" suitable for v1 serialization"""
         return self._mtime
 
+    def need_delay(self, now):
+        """True if the stored mtime would be ambiguous with the current time"""
+        return self._state == b'n' and self._mtime == now
+
 
 def gettype(q):
     return int(q & 0xFFFF)