Home | History | Annotate | Download | only in Lib

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
225 repr, readable, recursive = self.format(object, context.copy(),
227 if not readable:
235 and flags indicating whether the representation is 'readable'
274 readable = True
284 readable = readable and kreadable and vreadable
288 return "{%s}" % _commajoin(components), readable, recursive
308 readable = True
317 readable = False
321 return format % _commajoin(components), readable, recursive