Translate lines escaped with a slash: /
(content)
| 351 | return '%s("%s")' % (name, args) |
| 352 | |
| 353 | def _tr_paren(content): |
| 354 | "Translate lines escaped with a slash: /" |
| 355 | name, _, args = content.partition(' ') |
| 356 | return '%s(%s)' % (name, ", ".join(args.split())) |
| 357 | |
| 358 | tr = { ESC_SHELL : 'get_ipython().system({!r})'.format, |
| 359 | ESC_SH_CAP : 'get_ipython().getoutput({!r})'.format, |
nothing calls this directly
no outgoing calls
no test coverage detected