idirstate: add missing get_entry() method
authorMatt Harbison <matt_harbison@yahoo.com>
Mon, 18 Apr 2022 11:15:29 -0400
changeset 49076 9c8d67a3af5e
parent 49075 7afa96d3b484
child 49077 20d151e43429
idirstate: add missing get_entry() method Differential Revision: https://phab.mercurial-scm.org/D12566
mercurial/interfaces/dirstate.py
--- a/mercurial/interfaces/dirstate.py	Wed Apr 13 15:02:01 2022 -0400
+++ b/mercurial/interfaces/dirstate.py	Mon Apr 18 11:15:29 2022 -0400
@@ -61,6 +61,9 @@
         used to get real file paths. Use vfs functions instead.
         """
 
+    def get_entry(path):
+        """return a DirstateItem for the associated path"""
+
     def pathto(f, cwd=None):
         pass