mercurial/context.py
changeset 19571 103edf3ed79e
parent 19568 f58235d85d6b
child 19572 c19f46b904b9
equal deleted inserted replaced
19570:f69ebcb06ce2 19571:103edf3ed79e
   808         sc2 = str(c2)
   808         sc2 = str(c2)
   809         if sc2 not in self._copycache:
   809         if sc2 not in self._copycache:
   810             self._copycache[sc2] = copies.pathcopies(c2)
   810             self._copycache[sc2] = copies.pathcopies(c2)
   811         return self._copycache[sc2]
   811         return self._copycache[sc2]
   812 
   812 
   813 class workingctx(changectx):
   813 class workingctx(basectx):
   814     """A workingctx object makes access to data related to
   814     """A workingctx object makes access to data related to
   815     the current working directory convenient.
   815     the current working directory convenient.
   816     date - any valid date string or (unixtime, offset), or None.
   816     date - any valid date string or (unixtime, offset), or None.
   817     user - username string, or None.
   817     user - username string, or None.
   818     extra - a dictionary of extra values, or None.
   818     extra - a dictionary of extra values, or None.