Translate lines escaped with a semicolon: ;
(content)
| 346 | return '%s("%s")' % (name, '", "'.join(args.split()) ) |
| 347 | |
| 348 | def _tr_quote2(content): |
| 349 | "Translate lines escaped with a semicolon: ;" |
| 350 | name, _, args = content.partition(' ') |
| 351 | return '%s("%s")' % (name, args) |
| 352 | |
| 353 | def _tr_paren(content): |
| 354 | "Translate lines escaped with a slash: /" |
nothing calls this directly
no outgoing calls
no test coverage detected