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

Function _tr_help

IPython/core/inputtransformer2.py:445–453  ·  view source on GitHub ↗

Translate lines escaped with: ? A naked help line should fire the intro help screen (shell.show_usage())

(content)

Source from the content-addressed store, hash-verified

443
444
445def _tr_help(content):
446 """Translate lines escaped with: ?
447
448 A naked help line should fire the intro help screen (shell.show_usage())
449 """
450 if not content:
451 return 'get_ipython().show_usage()'
452
453 return _make_help_call(content, '?')
454
455def _tr_help2(content):
456 """Translate lines escaped with: ??

Callers

nothing calls this directly

Calls 1

_make_help_callFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…