changeset 17726 | 7cb7e17c23b2 |
parent 17725 | ffd589d4b785 |
child 17747 | aad3bce98f76 |
--- a/mercurial/scmutil.py Tue Oct 09 01:41:55 2012 +0900 +++ b/mercurial/scmutil.py Tue Oct 09 01:41:55 2012 +0900 @@ -219,6 +219,9 @@ def mkdir(self, path=None): return os.mkdir(self.join(path)) + def stat(self, path=None): + return os.stat(self.join(path)) + class vfs(abstractvfs): '''Operate files relative to a base directory