Translate lines escaped with: ? A naked help line should fire the intro help screen (shell.show_usage())
(content)
| 443 | |
| 444 | |
| 445 | def _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 | |
| 455 | def _tr_help2(content): |
| 456 | """Translate lines escaped with: ?? |
nothing calls this directly
no test coverage detected
searching dependent graphs…