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

Lines Matching refs:readable

70     """Determine if saferepr(object) is readable by eval()."""
129 s, readable, recursive = self.format(object, {}, 0, 0)
130 return readable and not recursive
232 repr, readable, recursive = self.format(object, context.copy(),
234 if not readable:
242 and flags indicating whether the representation is 'readable'
281 readable = True
291 readable = readable and kreadable and vreadable
295 return "{%s}" % _commajoin(components), readable, recursive
315 readable = True
324 readable = False
328 return format % _commajoin(components), readable, recursive