Translate lines escaped with: ,
(line_info)
| 240 | return tpl % (line_info.pre, t_magic_name, t_magic_arg_s) |
| 241 | |
| 242 | def _tr_quote(line_info): |
| 243 | "Translate lines escaped with: ," |
| 244 | return '%s%s("%s")' % (line_info.pre, line_info.ifun, |
| 245 | '", "'.join(line_info.the_rest.split()) ) |
| 246 | |
| 247 | def _tr_quote2(line_info): |
| 248 | "Translate lines escaped with: ;" |
nothing calls this directly
no outgoing calls
no test coverage detected