comparison mercurial/localrepo.py @ 3241:a184cd0c2db9

Merge with upstream
author Brendan Cully <brendan@kublai.com>
date Tue, 03 Oct 2006 12:14:33 -0700
parents 53e843840349 8d4855fd9d7b
children 764688cf51e5
comparison
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 '''