Generic message when no information is found.
(self, msg, oname)
| 450 | self.parser.theme_name = scheme |
| 451 | |
| 452 | def noinfo(self, msg, oname): |
| 453 | """Generic message when no information is found.""" |
| 454 | print('No %s found' % msg, end=' ') |
| 455 | if oname: |
| 456 | print('for %s' % oname) |
| 457 | else: |
| 458 | print() |
| 459 | |
| 460 | def pdef(self, obj, oname=''): |
| 461 | """Print the call signature for any callable object. |