Translate lines escaped with: ?/??
(line_info)
| 221 | return '%sget_ipython().getoutput(%r)' % (line_info.pre, cmd) |
| 222 | |
| 223 | def _tr_help(line_info): |
| 224 | "Translate lines escaped with: ?/??" |
| 225 | # A naked help line should just fire the intro help screen |
| 226 | if not line_info.line[1:]: |
| 227 | return 'get_ipython().show_usage()' |
| 228 | |
| 229 | return _make_help_call(line_info.ifun, line_info.esc, line_info.pre) |
| 230 | |
| 231 | def _tr_magic(line_info): |
| 232 | "Translate lines escaped with: %" |
nothing calls this directly
no test coverage detected