Generic message when no information is found.
(self, msg, oname)
| 386 | self.parser.color_table.set_active_scheme(scheme) |
| 387 | |
| 388 | def noinfo(self, msg, oname): |
| 389 | """Generic message when no information is found.""" |
| 390 | print('No %s found' % msg, end=' ') |
| 391 | if oname: |
| 392 | print('for %s' % oname) |
| 393 | else: |
| 394 | print() |
| 395 | |
| 396 | def pdef(self, obj, oname=''): |
| 397 | """Print the call signature for any callable object. |