changeset 19658:f354e5cdb788

workingctx: remove unneeded __repr__ since it is now inherited
author Sean Farley <sean.michael.farley@gmail.com>
date Wed, 14 Aug 2013 13:32:44 -0500
parents 145636d31bb4
children 750a913334c8
files mercurial/context.py
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/context.py	Tue Sep 03 20:02:53 2013 +0400
+++ b/mercurial/context.py	Wed Aug 14 13:32:44 2013 -0500
@@ -865,9 +865,6 @@
     def __str__(self):
         return str(self._parents[0]) + "+"
 
-    def __repr__(self):
-        return "<workingctx %s>" % str(self)
-
     def __nonzero__(self):
         return True