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

Function _tr_help2

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

326 return _make_help_call(content, '?')
327
328def _tr_help2(content):
329 """Translate lines escaped with: ??
330
331 A naked help line should fire the intro help screen (shell.show_usage())
332 """
333 if not content:
334 return 'get_ipython().show_usage()'
335
336 return _make_help_call(content, '??')
337
338def _tr_magic(content):
339 "Translate lines escaped with a percent sign: %"

Callers

nothing calls this directly

Calls 1

_make_help_callFunction · 0.70

Tested by

no test coverage detected