mercurial/localrepo.py
changeset 3241 a184cd0c2db9
parent 3215 53e843840349
parent 3240 8d4855fd9d7b
child 3295 764688cf51e5
equal deleted inserted replaced
3232:e0069e7fe419 3241:a184cd0c2db9
   318             f = f[1:]
   318             f = f[1:]
   319         return filelog.filelog(self.opener, f, self.revlogversion)
   319         return filelog.filelog(self.opener, f, self.revlogversion)
   320 
   320 
   321     def changectx(self, changeid=None):
   321     def changectx(self, changeid=None):
   322         return context.changectx(self, changeid)
   322         return context.changectx(self, changeid)
       
   323 
       
   324     def workingctx(self):
       
   325         return context.workingctx(self)
   323 
   326 
   324     def parents(self, changeid=None):
   327     def parents(self, changeid=None):
   325         '''
   328         '''
   326         get list of changectxs for parents of changeid or working directory
   329         get list of changectxs for parents of changeid or working directory
   327         '''
   330         '''