Translate lines escaped with: !
(line_info)
| 211 | |
| 212 | # These define the transformations for the different escape characters. |
| 213 | def _tr_system(line_info): |
| 214 | "Translate lines escaped with: !" |
| 215 | cmd = line_info.line.lstrip().lstrip(ESC_SHELL) |
| 216 | return '%sget_ipython().system(%r)' % (line_info.pre, cmd) |
| 217 | |
| 218 | def _tr_system2(line_info): |
| 219 | "Translate lines escaped with: !!" |
nothing calls this directly
no outgoing calls
no test coverage detected