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

Function _tr_help2

IPython/core/inputtransformer2.py:455–463  ·  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

453 return _make_help_call(content, '?')
454
455def _tr_help2(content):
456 """Translate lines escaped with: ??
457
458 A naked help line should fire the intro help screen (shell.show_usage())
459 """
460 if not content:
461 return 'get_ipython().show_usage()'
462
463 return _make_help_call(content, '??')
464
465def _tr_magic(content):
466 "Translate lines escaped with a percent sign: %"

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…