Translate lines escaped with: ?? A naked help line should fire the intro help screen (shell.show_usage())
(content)
| 326 | return _make_help_call(content, '?') |
| 327 | |
| 328 | def _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 | |
| 338 | def _tr_magic(content): |
| 339 | "Translate lines escaped with a percent sign: %" |
nothing calls this directly
no test coverage detected