cubicweb/rtags.py
branch3.25
changeset 12212 f2e6fb5ddf68
parent 11932 7b2247098f58
child 12567 26744ad37953
--- a/cubicweb/rtags.py	Fri Oct 06 14:23:40 2017 +0200
+++ b/cubicweb/rtags.py	Fri Oct 06 10:00:36 2017 +0200
@@ -88,7 +88,14 @@
     def __repr__(self):
         # find a way to have more infos but keep it readable
         # (in error messages in case of an ambiguity for instance)
-        return '%s (%s): %s' % (id(self), self.__regid__, self.__class__)
+        return '<%s %s>' % (self.__regid__, self._short_repr())
+
+    def _short_repr(self):
+        # find a way to have more infos but keep it readable
+        # (in error messages in case of an ambiguity for instance)
+        return '%s@0x%x%s' % (
+            self.__module__, id(self),
+            ' derived from %s' % self._parent._short_repr() if self._parent else '')
 
     # dict compat
     def __getitem__(self, key):