MCPcopy Index your code
hub / github.com/ipython/ipython / noinfo

Method noinfo

IPython/core/oinspect.py:452–458  ·  view source on GitHub ↗

Generic message when no information is found.

(self, msg, oname)

Source from the content-addressed store, hash-verified

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.

Callers 4

pdefMethod · 0.95
pdocMethod · 0.95
psourceMethod · 0.95
pfileMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected