Translate lines escaped with: /
(line_info)
| 250 | line_info.the_rest) |
| 251 | |
| 252 | def _tr_paren(line_info): |
| 253 | "Translate lines escaped with: /" |
| 254 | return '%s%s(%s)' % (line_info.pre, line_info.ifun, |
| 255 | ", ".join(line_info.the_rest.split())) |
| 256 | |
| 257 | tr = { ESC_SHELL : _tr_system, |
| 258 | ESC_SH_CAP : _tr_system2, |
nothing calls this directly
no outgoing calls
no test coverage detected