Translate lines escaped with: ? A naked help line should fire the intro help screen (shell.show_usage())
(content)
| 316 | (next_input, t_magic_name, t_magic_arg_s) |
| 317 | |
| 318 | def _tr_help(content): |
| 319 | """Translate lines escaped with: ? |
| 320 | |
| 321 | A naked help line should fire the intro help screen (shell.show_usage()) |
| 322 | """ |
| 323 | if not content: |
| 324 | return 'get_ipython().show_usage()' |
| 325 | |
| 326 | return _make_help_call(content, '?') |
| 327 | |
| 328 | def _tr_help2(content): |
| 329 | """Translate lines escaped with: ?? |
nothing calls this directly
no test coverage detected