Mercurial > public > mercurial-scm > hg
comparison mercurial/context.py @ 17792:a1c4b21fc1b2
phases: add a phase and phasestr method to file context
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Tue, 16 Oct 2012 17:09:50 -0500 |
parents | 3a524b647897 |
children | 3cc06457f15e |
comparison
equal
deleted
inserted
replaced
17791:1e30c1bbd8c0 | 17792:a1c4b21fc1b2 |
---|---|
469 return self._changectx.description() | 469 return self._changectx.description() |
470 def branch(self): | 470 def branch(self): |
471 return self._changectx.branch() | 471 return self._changectx.branch() |
472 def extra(self): | 472 def extra(self): |
473 return self._changectx.extra() | 473 return self._changectx.extra() |
474 def phase(self): | |
475 return self._changectx.phase() | |
476 def phasestr(self): | |
477 return self._changectx.phasestr() | |
474 def manifest(self): | 478 def manifest(self): |
475 return self._changectx.manifest() | 479 return self._changectx.manifest() |
476 def changectx(self): | 480 def changectx(self): |
477 return self._changectx | 481 return self._changectx |
478 | 482 |