Format an argument default value as text.
(self, object)
| 1515 | return title + '\n' + self.indent(contents.rstrip(), ' | ') + '\n' |
| 1516 | |
| 1517 | def formatvalue(self, object): |
| 1518 | """Format an argument default value as text.""" |
| 1519 | return '=' + self.repr(object) |
| 1520 | |
| 1521 | def docroutine(self, object, name=None, mod=None, cl=None, homecls=None): |
| 1522 | """Produce text documentation for a function or method object.""" |