mercurial/scmutil.py
changeset 21563 764b691b8bda
parent 21111 9d28fd795215
child 21716 90f9be5adade
--- a/mercurial/scmutil.py	Tue May 27 21:56:03 2014 +0530
+++ b/mercurial/scmutil.py	Tue May 27 23:02:05 2014 +0530
@@ -178,6 +178,9 @@
     def islink(self, path=None):
         return os.path.islink(self.join(path))
 
+    def lexists(self, path=None):
+        return os.path.lexists(self.join(path))
+
     def lstat(self, path=None):
         return os.lstat(self.join(path))