# HG changeset patch # User Nicolas Dumazet # Date 1289123967 -32400 # Node ID 4832717aed98f347f0fd435ee690cda7de31f1a4 # Parent 99f7dc8def34b4178b7f24f788dc7432903b5b49 context: add __repr__ methods to workingfilectx and workingctx diff -r 99f7dc8def34 -r 4832717aed98 mercurial/context.py --- a/mercurial/context.py Mon Nov 08 01:55:32 2010 +0100 +++ b/mercurial/context.py Sun Nov 07 18:59:27 2010 +0900 @@ -603,6 +603,9 @@ def __str__(self): return str(self._parents[0]) + "+" + def __repr__(self): + return "" % str(self) + def __nonzero__(self): return True @@ -897,6 +900,9 @@ def __str__(self): return "%s@%s" % (self.path(), self._changectx) + def __repr__(self): + return "" % str(self) + def data(self): return self._repo.wread(self._path) def renamed(self):