Home | History | Annotate | Download | only in python2.7

Lines Matching full:recursive

32     Generate a 'standard' repr()-like value, but protect against recursive
66 """Version of repr() which can handle recursive data structures."""
74 """Determine if object requires a recursive representation."""
129 s, readable, recursive = self.format(object, {}, 0, 0)
130 return readable and not recursive
232 repr, readable, recursive = self.format(object, context.copy(),
236 if recursive:
243 and whether the object represents a recursive construct.
282 recursive = False
293 recursive = True
295 return "{%s}" % _commajoin(components), readable, recursive
316 recursive = False
326 recursive = True
328 return format % _commajoin(components), readable, recursive