mercurial/scmutil.py
changeset 18950 647e3b0c8751
parent 18949 138978f20180
child 18951 d13916a00b7e
--- a/mercurial/scmutil.py	Mon Apr 15 01:22:15 2013 +0900
+++ b/mercurial/scmutil.py	Mon Apr 15 01:22:15 2013 +0900
@@ -260,6 +260,9 @@
     def rename(self, src, dst):
         return util.rename(self.join(src), self.join(dst))
 
+    def readlink(self, path):
+        return os.readlink(self.join(path))
+
     def stat(self, path=None):
         return os.stat(self.join(path))