Lines Matching refs:repr_str
139 repr_str = repr(r)
140 if '\n' in repr_str:
141 repr_str = repr(repr_str)
142 if len(repr_str) > resultlimit:
143 repr_str = repr_str[:resultlimit] + ' ...'
144 result = '<%s @ 0x%x> (%s)' % (type(r).__name__, id(r), repr_str)
149 repr_str = repr(r)
150 if '\n' in repr_str:
151 repr_str = repr(repr_str)
152 if len(repr_str) < 16:
153 return repr_str