Translate lines escaped with: !!
(line_info)
| 216 | return '%sget_ipython().system(%r)' % (line_info.pre, cmd) |
| 217 | |
| 218 | def _tr_system2(line_info): |
| 219 | "Translate lines escaped with: !!" |
| 220 | cmd = line_info.line.lstrip()[2:] |
| 221 | return '%sget_ipython().getoutput(%r)' % (line_info.pre, cmd) |
| 222 | |
| 223 | def _tr_help(line_info): |
| 224 | "Translate lines escaped with: ?/??" |
nothing calls this directly
no outgoing calls
no test coverage detected