mercurial/scmutil.py
changeset 20090 88d8e568add1
parent 20086 f3df2612f3c3
child 20364 a6cf48b2880d
child 20699 58c32a9c8e7b
equal deleted inserted replaced
20089:2d0ab571b822 20090:88d8e568add1
   175         return util.makedir(self.join(path), notindexed)
   175         return util.makedir(self.join(path), notindexed)
   176 
   176 
   177     def makedirs(self, path=None, mode=None):
   177     def makedirs(self, path=None, mode=None):
   178         return util.makedirs(self.join(path), mode)
   178         return util.makedirs(self.join(path), mode)
   179 
   179 
       
   180     def makelock(self, info, path):
       
   181         return util.makelock(info, self.join(path))
       
   182 
   180     def mkdir(self, path=None):
   183     def mkdir(self, path=None):
   181         return os.mkdir(self.join(path))
   184         return os.mkdir(self.join(path))
   182 
   185 
   183     def readdir(self, path=None, stat=None, skip=None):
   186     def readdir(self, path=None, stat=None, skip=None):
   184         return osutil.listdir(self.join(path), stat, skip)
   187         return osutil.listdir(self.join(path), stat, skip)
       
   188 
       
   189     def readlock(self, path):
       
   190         return util.readlock(self.join(path))
   185 
   191 
   186     def rename(self, src, dst):
   192     def rename(self, src, dst):
   187         return util.rename(self.join(src), self.join(dst))
   193         return util.rename(self.join(src), self.join(dst))
   188 
   194 
   189     def readlink(self, path):
   195     def readlink(self, path):