| 58 | NoModule.__module__ = None |
| 59 | |
| 60 | class Breaking(object): |
| 61 | def _repr_pretty_(self, p, cycle): |
| 62 | with p.group(4,"TG: ",":"): |
| 63 | p.text("Breaking(") |
| 64 | p.break_() |
| 65 | p.text(")") |
| 66 | |
| 67 | class BreakingRepr(object): |
| 68 | def __repr__(self): |
no outgoing calls