Translate lines escaped with: ?? A naked help line should fire the intro help screen (shell.show_usage())
(content)
| 453 | return _make_help_call(content, '?') |
| 454 | |
| 455 | def _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 | |
| 465 | def _tr_magic(content): |
| 466 | "Translate lines escaped with a percent sign: %" |
nothing calls this directly
no test coverage detected
searching dependent graphs…