author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
Tue, 12 Nov 2013 16:23:52 +0900 | |
changeset 20085 | 589d6bb5b18d |
parent 20084 | a3378a1b0a05 |
child 20086 | f3df2612f3c3 |
--- a/mercurial/scmutil.py Tue Nov 12 16:23:52 2013 +0900 +++ b/mercurial/scmutil.py Tue Nov 12 16:23:52 2013 +0900 @@ -159,6 +159,9 @@ def isdir(self, path=None): return os.path.isdir(self.join(path)) + def isfile(self, path=None): + return os.path.isfile(self.join(path)) + def islink(self, path=None): return os.path.islink(self.join(path))