mercurial/scmutil.py
changeset 17726 7cb7e17c23b2
parent 17725 ffd589d4b785
child 17747 aad3bce98f76
equal deleted inserted replaced
17725:ffd589d4b785 17726:7cb7e17c23b2
   216     def makedirs(self, path=None, mode=None):
   216     def makedirs(self, path=None, mode=None):
   217         return util.makedirs(self.join(path), mode)
   217         return util.makedirs(self.join(path), mode)
   218 
   218 
   219     def mkdir(self, path=None):
   219     def mkdir(self, path=None):
   220         return os.mkdir(self.join(path))
   220         return os.mkdir(self.join(path))
       
   221 
       
   222     def stat(self, path=None):
       
   223         return os.stat(self.join(path))
   221 
   224 
   222 class vfs(abstractvfs):
   225 class vfs(abstractvfs):
   223     '''Operate files relative to a base directory
   226     '''Operate files relative to a base directory
   224 
   227 
   225     This class is used to hide the details of COW semantics and
   228     This class is used to hide the details of COW semantics and