MCPcopy Create free account
hub / github.com/ipython/ipython / noinfo

Method noinfo

IPython/core/oinspect.py:388–394  ·  view source on GitHub ↗

Generic message when no information is found.

(self, msg, oname)

Source from the content-addressed store, hash-verified

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.

Callers 4

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

Calls

no outgoing calls

Tested by

no test coverage detected