Home | History | Annotate | Download | only in Lib

Lines Matching refs:readable

67     """Determine if saferepr(object) is readable by eval()."""

126 s, readable, recursive = self.format(object, {}, 0, 0)
127 return readable and not recursive
229 repr, readable, recursive = self.format(object, context.copy(),
231 if not readable:
239 and flags indicating whether the representation is 'readable'
278 readable = True
288 readable = readable and kreadable and vreadable
292 return "{%s}" % _commajoin(components), readable, recursive
312 readable = True
321 readable = False
325 return format % _commajoin(components), readable, recursive