Format an argument default value as text.
(self, object)
| 1561 | return title + '\n' + self.indent(contents.rstrip(), ' | ') + '\n' |
| 1562 | |
| 1563 | def formatvalue(self, object): |
| 1564 | """Format an argument default value as text.""" |
| 1565 | return '=' + self.repr(object) |
| 1566 | |
| 1567 | def docroutine(self, object, name=None, mod=None, cl=None, homecls=None): |
| 1568 | """Produce text documentation for a function or method object.""" |