Mercurial > hg-stable
changeset 49131:9c8d67a3af5e
idirstate: add missing get_entry() method
Differential Revision: https://phab.mercurial-scm.org/D12566
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 18 Apr 2022 11:15:29 -0400 |
parents | 7afa96d3b484 |
children | 20d151e43429 |
files | mercurial/interfaces/dirstate.py |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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