(self, x, level)
| 1217 | repr_str = repr_string |
| 1218 | |
| 1219 | def repr_instance(self, x, level): |
| 1220 | try: |
| 1221 | return cram(stripid(repr(x)), self.maxstring) |
| 1222 | except: |
| 1223 | return '<%s instance>' % x.__class__.__name__ |
| 1224 | |
| 1225 | class TextDoc(Doc): |
| 1226 | """Formatter class for text documentation.""" |