(self)
| 479 | rounded = property(_get_rounded) |
| 480 | |
| 481 | def __repr__(self): |
| 482 | v = asIntOrFloat(self.v) |
| 483 | if isinstance(v, int): |
| 484 | return '%d%s' % (v, self.name.lower()) |
| 485 | return '%s%s' % (asFormatted(v), self.name.lower()) |
| 486 | |
| 487 | def asNormalizedJSON(self): |
| 488 | """Answer self as normalized JSON-compatible dict. |
nothing calls this directly
no test coverage detected