Lines Matching defs:repr
1 """Redo the builtin repr() (representation) but with limits on most sizes."""
3 __all__ = ["Repr", "repr", "recursive_repr"]
10 'Decorator to make a repr function return fillvalue for a recursive call'
52 def repr(self, x):
127 s = builtins.repr(x[:self.maxstring])
131 s = builtins.repr(x[:i] + x[len(x)-j:])
136 s = builtins.repr(x) # XXX Hope this isn't too slow...
145 s = builtins.repr(x)
167 repr = aRepr.repr