mercurial/pure/parsers.py
changeset 47531 f5b8f0b9c129
parent 47526 8bcae9bf9e8d
child 47532 ccbabaee5c36
--- a/mercurial/pure/parsers.py	Sun Jul 04 01:59:41 2021 +0200
+++ b/mercurial/pure/parsers.py	Sun Jul 04 02:12:54 2021 +0200
@@ -87,6 +87,11 @@
         return self._state
 
     @property
+    def tracked(self):
+        """True is the file is tracked in the working copy"""
+        return self._state in b"nma"
+
+    @property
     def added(self):
         """True if the file has been added"""
         return self._state == b'a'